Skip to content

Commit

Permalink
set context pruning in .fst.config.json files for use in vscode
Browse files Browse the repository at this point in the history
  • Loading branch information
nikswamy committed Sep 3, 2024
1 parent d682cab commit 8c81d8e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion FStar.fst.config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"fstar_exe": "./bin/fstar.exe",
"options": [
"--cache_dir", ".cache"
"--cache_dir", ".cache",
"--ext", "context_pruning"
],
"include_dirs": [
"ulib/",
Expand Down
1 change: 1 addition & 0 deletions examples/miniparse/MiniParse.fst.config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"fstar_exe": "fstar.exe",
"options": [
"--ext", "context_pruning"
],
"include_dirs": [
]
Expand Down
2 changes: 2 additions & 0 deletions tests/hacl/HaclTests.fst.config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
"fstar_exe": "fstar.exe",
"options": [
"--ext", "context_pruning",
"--z3limit_factor", "2"
],
"include_dirs": [
]
Expand Down
3 changes: 2 additions & 1 deletion tests/vale/ValeTest.fst.config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"fstar_exe": "fstar.exe",
"options": [
"--cache_dir", ".cache"
"--cache_dir", ".cache",
"--ext", "context_pruning"
],
"include_dirs": [
"../../ulib/",
Expand Down

0 comments on commit 8c81d8e

Please sign in to comment.