Skip to content

Commit

Permalink
Merge pull request #197 from kth-step/bir-ott
Browse files Browse the repository at this point in the history
Improvements to BIR documentation
  • Loading branch information
palmskog authored Jan 7, 2025
2 parents 72c6787 + f0fe329 commit a8557a8
Show file tree
Hide file tree
Showing 18 changed files with 1,460 additions and 1,801 deletions.
1 change: 1 addition & 0 deletions examples/compute/Holmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@ test-compute.exe: test-compute.uo

test: test-compute.exe
./test-compute.exe
.PHONY: test

EXTRA_CLEANS = test-compute.exe
11 changes: 6 additions & 5 deletions examples/compute/examples/Holmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@ INCLUDES = $(HOLBADIR)/examples/compute/examples/increment \
$(HOLBADIR)/examples/compute/examples/sum_list \
$(HOLBADIR)/examples/compute/examples/jump_chain

all: $(DEFAULT_TARGETS) test-examples.exe
all: $(DEFAULT_TARGETS) benchmark-examples.exe
.PHONY: all

test-examples.exe: test-examples.uo
benchmark-examples.exe: benchmark-examples.uo
$(HOLMOSMLC) -o $@ $<

test: test-examples.exe
./test-examples.exe
benchmark: benchmark-examples.exe
./benchmark-examples.exe
.PHONY: benchmark

EXTRA_CLEANS = test-examples.exe
EXTRA_CLEANS = benchmark-examples.exe
File renamed without changes.
2 changes: 1 addition & 1 deletion examples/compute/examples/increment/ex_incrementScript.sml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
open HolKernel Parse boolLib bossLib;
open birTheory;
open bir_computeTheory;

open bir_metaTheory;

val _ = new_theory "ex_increment";

Expand Down
Loading

0 comments on commit a8557a8

Please sign in to comment.