-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move legacy probability theories to examples (#1185)
* Move legacy probability theories to examples * Minor cleanups * FTBFS RBDTheory depending also on legacy probability... * Fixed missing dependencies...
- Loading branch information
Showing
10 changed files
with
22 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
INCDIRS = examples/miller/formalize src/probability src/real/analysis | ||
INCDIRS = examples/miller/formalize src/probability examples/probability/legacy src/real/analysis | ||
INCLUDES = $(patsubst %,$(dprot $(HOLDIR)/%),$(INCDIRS)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
INCLUDES = ../miller/subtypes ../miller/formalize $(HOLDIR)/src/probability \ | ||
INCLUDES = ../miller/subtypes ../miller/formalize $(HOLDIR)/examples/probability/legacy \ | ||
$(HOLDIR)/src/real/analysis |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
INCLUDES = ../formalize ../ho_prover ../subtypes ../../Crypto/RSA \ | ||
$(HOLDIR)/src/real $(HOLDIR)/src/probability | ||
$(HOLDIR)/src/real $(HOLDIR)/examples/probability/legacy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
INCLUDES = $(HOLDIR)/src/real $(HOLDIR)/src/res_quan/src $(HOLDIR)/src/real/analysis \ | ||
$(HOLDIR)/src/probability | ||
|
||
EXTRA_CLEANS = $(patsubst %Theory.uo,%Theory.html,$(DEFAULT_TARGETS)) | ||
|
||
all: $(DEFAULT_TARGETS) | ||
|
||
.PHONY: all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# HOL's Legacy Probability Theory based on Finite Measure Theory | ||
|
||
The following theories in this directory was in `$(HOLDIR)/src/probability`: | ||
|
||
real_measureScript.sml * Finite Measure Theory (based on reals) | ||
real_lebesgueScript.sml * Lebesgue Integration based on Finite Measures | ||
real_probabilityScript.sml * Probability Theory based on Finite Measures |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters