Skip to content

Commit

Permalink
README fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
adharshkamath committed Dec 28, 2023
1 parent 1acfbcf commit 84b36bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ model: <model_name> # the LLM to use (currently gpt-4, gpt-4-32k, gpt-3.5-turbo,
benchmarks: <path_to_benchmarks_file> # this file must contain the list of benchmarks to run, one file path per line
benchmark_features: <features_of_the_benchmarks> # this string should indicate the features of the benchmarks under consideration.
# For e.g., "one_loop_one_method" describes benchmarks with a single loop and a single method.
# Other possible values are "multiple_methods_no_loop", "multiple_loops_one_method", "arrays_multiple_loops_one_method", "termination_one_loop_one_method".
# Other possible values are "multiple_methods_no_loops", "arrays_pointers_multiple_loops", "termination_one_loop_one_method".
# (If "termination" is specified, variants will be inferred. If "multiple_methods" is specified, pre-post conditions will be inferred).
debug: <debug_mode> # if true, the toolchain will print debug information
```
Expand Down
2 changes: 1 addition & 1 deletion config/sample_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ checker: frama-c # only frama-c is supported for now, there is a boogie PoC
checker_timeout: 3 # in seconds
model: gpt-4-32k # gpt-4, gpt-3.5-turbo, codellama-34b-python
benchmarks: experiments/loop_invariants.txt # list of benchmark files
benchmark_features: one_loop_one_method # features include {one_loop, multiple_loops, one_method, multiple_methods, arrays, pointers, termination}
benchmark_features: one_loop_one_method # features of the benchmark. Possible values: {one_loop_one_method, multiple_methods_no_loops, arrays_pointers_multiple_loops, termination_one_loop_one_method}
debug: True # if True, prints debug information

0 comments on commit 84b36bd

Please sign in to comment.