-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
73 additions
and
73 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
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,4 +1,4 @@ | ||
# Gatlab | ||
# GATlab | ||
|
||
A collection of tools that one can use to reason with GATs and organize models of GATs. | ||
|
||
|
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,5 +1,5 @@ | ||
[deps] | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
Gatlab = "f0ffcf3b-d13a-433e-917c-cc44ccf5ead2" | ||
GATlab = "f0ffcf3b-d13a-433e-917c-cc44ccf5ead2" | ||
Literate = "98b081ad-f1c9-55d3-8b20-4c87d4299306" | ||
LiveServer = "16fef848-5104-11e9-1b77-fb7a48bbb589" |
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 |
---|---|---|
@@ -1,37 +1,37 @@ | ||
# Library Reference | ||
|
||
```@autodocs | ||
Modules = [Gatlab] | ||
Modules = [GATlab] | ||
``` | ||
|
||
## Syntax | ||
|
||
```@autodocs | ||
Modules = [ | ||
Gatlab.Syntax, | ||
Gatlab.Syntax.Scopes, | ||
Gatlab.Syntax.GATs, | ||
Gatlab.Syntax.Presentations, | ||
Gatlab.Syntax.ExprInterop, | ||
Gatlab.Syntax.TheoryInterface, | ||
GATlab.Syntax, | ||
GATlab.Syntax.Scopes, | ||
GATlab.Syntax.GATs, | ||
GATlab.Syntax.Presentations, | ||
GATlab.Syntax.ExprInterop, | ||
GATlab.Syntax.TheoryInterface, | ||
] | ||
``` | ||
|
||
## Models | ||
|
||
```@autodocs | ||
Modules = [ | ||
Gatlab.Models, | ||
Gatlab.Models.ModelInterface, | ||
Gatlab.Models.SymbolicModels, | ||
GATlab.Models, | ||
GATlab.Models.ModelInterface, | ||
GATlab.Models.SymbolicModels, | ||
] | ||
``` | ||
|
||
## Utilities | ||
|
||
```@autodocs | ||
Modules = [ | ||
Gatlab.Util, | ||
Gatlab.Util.MetaUtils, | ||
GATlab.Util, | ||
GATlab.Util.MetaUtils, | ||
] | ||
``` |
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
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
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
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,4 +1,4 @@ | ||
[deps] | ||
Gatlab = "f0ffcf3b-d13a-433e-917c-cc44ccf5ead2" | ||
GATlab = "f0ffcf3b-d13a-433e-917c-cc44ccf5ead2" | ||
StructEquality = "6ec83bb0-ed9f-11e9-3b4c-2b04cb4e219c" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" |
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,6 +1,6 @@ | ||
module TestModelInterface | ||
|
||
using Gatlab | ||
using GATlab | ||
using Test | ||
using StructEquality | ||
|
||
|
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,6 +1,6 @@ | ||
module TestSymbolicModels | ||
|
||
using Gatlab, Test | ||
using GATlab, Test | ||
|
||
abstract type CategoryExpr{T} <: GATExpr{T} end | ||
|
||
|
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,6 +1,6 @@ | ||
module TestFinMatrices | ||
|
||
using Gatlab, Test | ||
using GATlab, Test | ||
|
||
using .ThCategory | ||
|
||
|
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,6 +1,6 @@ | ||
module TestFinSets | ||
|
||
using Gatlab, Test | ||
using GATlab, Test | ||
|
||
using .ThCategory | ||
|
||
|
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,6 +1,6 @@ | ||
module TestNothings | ||
|
||
using Test, Gatlab | ||
using Test, GATlab | ||
|
||
using .ThCategory | ||
|
||
|
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,6 +1,6 @@ | ||
module TestScopeTrees | ||
|
||
using Test, Gatlab | ||
using Test, GATlab | ||
|
||
t = wrap( | ||
:a => pure(1), | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module TestGATs | ||
|
||
using Gatlab, Test | ||
using GATlab, Test | ||
|
||
# GAT ASTs | ||
########## | ||
|
Oops, something went wrong.