Skip to content

Commit

Permalink
add built from source binary path
Browse files Browse the repository at this point in the history
  • Loading branch information
Eikix committed Jan 17, 2025
1 parent 7b9fb5a commit b2a7237
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,24 @@ You can also print the proof to `stdout` with the `--print` flag.
brainfuck_prover prove --code "++>,<[>+.<-]" --output my_program_proof.json
```

Or if you built from source,

```shell
./target/release/brainfuck_prover prove --code "++>,<[>+.<-]" --output my_program_proof.json
```

2. Proof from program file

```shell
brainfuck_prover prove --file my_program.bf --output my_program_proof.json
```

Or if you built from source,

```shell
./target/release/brainfuck_prover prove --file my_program.bf --output my_program_proof.json
```

### Verify

To verify a proof, the proof must be stored in a JSON file (`--output` flag from the `prove` subcommand).
Expand Down

0 comments on commit b2a7237

Please sign in to comment.