From e28a263bd0989fd53b9200eaa0745b4f5eab1bf2 Mon Sep 17 00:00:00 2001 From: Yoichi Hirai Date: Mon, 18 Nov 2024 14:19:09 +0000 Subject: [PATCH] fix: drop nanofib from README too (#161) Recently we removed nanofib example. This commit removes it from README. --- prover/README.md | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/prover/README.md b/prover/README.md index e1967ef6..8a4e01e5 100644 --- a/prover/README.md +++ b/prover/README.md @@ -29,15 +29,3 @@ cargo run --release \ ``` The argument supplied with `-r` is the `log2` of the total row count, which will generate a table containing `2^r` rows. - -#### Nanofibonacci (prover) - -In this example, we compute the fibonacci numbers using a small machine that does different things according to the current program counter: - -``` -cargo run \ - -p nexus-vm-prover \ - --example nanofib -- --n-th 300 --rows-log2 11 -``` - -The `--n-th` argument specifies which Fibonacci number is calculated. `--rows-log2` specifies the length of the computation trace.