-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reorganize and clean up files: Remove old unussed files, move the root project to lisa-sets, change lisa.mathematics to lisa.maths, some more.
- Loading branch information
1 parent
99f8370
commit 1411eac
Showing
55 changed files
with
321 additions
and
1,674 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 |
---|---|---|
|
@@ -16,3 +16,6 @@ target | |
|
||
silex/* | ||
scallion/* | ||
|
||
# caching of theorems | ||
cache |
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
1 change: 0 additions & 1 deletion
1
lisa-kernel/src/main/scala/lisa/kernel/fol/EquivalenceChecker.scala
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
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,32 @@ | ||
package lisa | ||
|
||
import lisa.SetTheoryLibrary | ||
import lisa.prooflib.BasicMain | ||
|
||
/** | ||
* The parent trait of all theory files containing mathematical development | ||
*/ | ||
trait Main extends BasicMain { | ||
|
||
export lisa.fol.FOL.{*, given} | ||
export SetTheoryLibrary.{given, _} | ||
export lisa.prooflib.BasicStepTactic.* | ||
export lisa.prooflib.SimpleDeducedSteps.* | ||
|
||
export lisa.automation.Tautology | ||
export lisa.automation.Substitution | ||
export lisa.automation.Tableau | ||
|
||
knownDefs.update(emptySet, Some(emptySetAxiom)) | ||
knownDefs.update(unorderedPair, Some(pairAxiom)) | ||
knownDefs.update(union, Some(unionAxiom)) | ||
knownDefs.update(powerSet, Some(powerAxiom)) | ||
knownDefs.update(subset, Some(subsetAxiom)) | ||
|
||
extension (symbol: ConstantLabel[?]) { | ||
def definition: JUSTIFICATION = { | ||
getDefinition(symbol).get | ||
} | ||
} | ||
|
||
} |
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
2 changes: 1 addition & 1 deletion
2
...isa/automation/kernel/CommonTactics.scala → ...scala/lisa/automation/CommonTactics.scala
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
3 changes: 2 additions & 1 deletion
3
...in/scala/lisa/prooflib/Substitution.scala → .../scala/lisa/automation/Substitution.scala
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
File renamed without changes.
Oops, something went wrong.