Skip to content

Commit

Permalink
enable context pruning
Browse files Browse the repository at this point in the history
  • Loading branch information
nikswamy committed Sep 5, 2024
1 parent eea1d86 commit 3668e72
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
4 changes: 3 additions & 1 deletion Pulse.fst.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
"options": [
"--query_cache",
"--load_cmxs",
"pulse"
"pulse",
"--ext",
"context_pruning"
],
"include_dirs": [
"lib/pulse",
Expand Down
4 changes: 3 additions & 1 deletion lib/pulse/core/Pulse.fst.config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"fstar_exe": "fstar.exe",
"options": [
"--query_cache"
"--query_cache",
"--ext",
"context_pruning"
],
"include_dirs": [
]
Expand Down
2 changes: 1 addition & 1 deletion share/pulse/Makefile.include-base
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ else
USE_HINTS:=
endif

FSTAR_OPTIONS += $(USE_HINTS)
FSTAR_OPTIONS += $(USE_HINTS) --ext context_pruning

# A place to put all build artifacts
ifneq (,$(OUTPUT_DIRECTORY))
Expand Down
4 changes: 3 additions & 1 deletion share/pulse/examples/Pulse.fst.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
"--cache_dir",
"_output/cache",
"--warn_error",
"-249"
"-249",
"--ext",
"context_pruning"
],
"include_dirs": [
"../../../lib/pulse",
Expand Down
4 changes: 3 additions & 1 deletion src/checker/PulseChecker.fst.config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"fstar_exe": "fstar.exe",
"options": [
"--query_cache"
"--query_cache",
"--ext",
"context_pruning"
],
"include_dirs": [
]
Expand Down

0 comments on commit 3668e72

Please sign in to comment.