├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── alga-theory.agda-lib ├── src ├── API.agda ├── API │ └── Theorems.agda ├── Algebra │ ├── Dioid.agda │ ├── Dioid │ │ ├── Bool.agda │ │ └── Bool │ │ │ └── Theorems.agda │ ├── Graph.agda │ ├── Graph │ │ ├── Reasoning.agda │ │ └── Theorems.agda │ ├── LabelledGraph.agda │ └── LabelledGraph │ │ ├── Reasoning.agda │ │ └── Theorems.agda └── Prelude.agda └── verify.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.agdai 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algebraic-graphs/agda/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algebraic-graphs/agda/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algebraic-graphs/agda/HEAD/README.md -------------------------------------------------------------------------------- /alga-theory.agda-lib: -------------------------------------------------------------------------------- 1 | name: alga-theory 2 | include: 3 | src -------------------------------------------------------------------------------- /src/API.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algebraic-graphs/agda/HEAD/src/API.agda -------------------------------------------------------------------------------- /src/API/Theorems.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algebraic-graphs/agda/HEAD/src/API/Theorems.agda -------------------------------------------------------------------------------- /src/Algebra/Dioid.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algebraic-graphs/agda/HEAD/src/Algebra/Dioid.agda -------------------------------------------------------------------------------- /src/Algebra/Dioid/Bool.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algebraic-graphs/agda/HEAD/src/Algebra/Dioid/Bool.agda -------------------------------------------------------------------------------- /src/Algebra/Dioid/Bool/Theorems.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algebraic-graphs/agda/HEAD/src/Algebra/Dioid/Bool/Theorems.agda -------------------------------------------------------------------------------- /src/Algebra/Graph.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algebraic-graphs/agda/HEAD/src/Algebra/Graph.agda -------------------------------------------------------------------------------- /src/Algebra/Graph/Reasoning.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algebraic-graphs/agda/HEAD/src/Algebra/Graph/Reasoning.agda -------------------------------------------------------------------------------- /src/Algebra/Graph/Theorems.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algebraic-graphs/agda/HEAD/src/Algebra/Graph/Theorems.agda -------------------------------------------------------------------------------- /src/Algebra/LabelledGraph.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algebraic-graphs/agda/HEAD/src/Algebra/LabelledGraph.agda -------------------------------------------------------------------------------- /src/Algebra/LabelledGraph/Reasoning.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algebraic-graphs/agda/HEAD/src/Algebra/LabelledGraph/Reasoning.agda -------------------------------------------------------------------------------- /src/Algebra/LabelledGraph/Theorems.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algebraic-graphs/agda/HEAD/src/Algebra/LabelledGraph/Theorems.agda -------------------------------------------------------------------------------- /src/Prelude.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algebraic-graphs/agda/HEAD/src/Prelude.agda -------------------------------------------------------------------------------- /verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algebraic-graphs/agda/HEAD/verify.sh --------------------------------------------------------------------------------