├── .ghci ├── .github └── workflows │ └── haskell-ci.yml ├── .gitignore ├── CHANGES ├── LICENSE ├── Math └── Combinatorics │ ├── Species.hs │ └── Species │ ├── AST.hs │ ├── AST │ └── Instances.hs │ ├── Class.hs │ ├── CycleIndex.hs │ ├── Enumerate.hs │ ├── Labeled.hs │ ├── NewtonRaphson.hs │ ├── Rec.hs │ ├── Simplify.hs │ ├── Structures.hs │ ├── TH.hs │ ├── Types.hs │ ├── Unlabeled.hs │ └── Util │ └── Interval.hs ├── Setup.hs ├── doc └── TODO ├── info ├── TypeLC.lhs ├── notes.txt └── oleg.txt ├── species.cabal ├── stack.yaml └── test ├── .ghci ├── ListN.hs ├── THTest.hs └── TreeTest.hs /.ghci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/.ghci -------------------------------------------------------------------------------- /.github/workflows/haskell-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/.github/workflows/haskell-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/CHANGES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/LICENSE -------------------------------------------------------------------------------- /Math/Combinatorics/Species.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/Math/Combinatorics/Species.hs -------------------------------------------------------------------------------- /Math/Combinatorics/Species/AST.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/Math/Combinatorics/Species/AST.hs -------------------------------------------------------------------------------- /Math/Combinatorics/Species/AST/Instances.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/Math/Combinatorics/Species/AST/Instances.hs -------------------------------------------------------------------------------- /Math/Combinatorics/Species/Class.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/Math/Combinatorics/Species/Class.hs -------------------------------------------------------------------------------- /Math/Combinatorics/Species/CycleIndex.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/Math/Combinatorics/Species/CycleIndex.hs -------------------------------------------------------------------------------- /Math/Combinatorics/Species/Enumerate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/Math/Combinatorics/Species/Enumerate.hs -------------------------------------------------------------------------------- /Math/Combinatorics/Species/Labeled.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/Math/Combinatorics/Species/Labeled.hs -------------------------------------------------------------------------------- /Math/Combinatorics/Species/NewtonRaphson.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/Math/Combinatorics/Species/NewtonRaphson.hs -------------------------------------------------------------------------------- /Math/Combinatorics/Species/Rec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/Math/Combinatorics/Species/Rec.hs -------------------------------------------------------------------------------- /Math/Combinatorics/Species/Simplify.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/Math/Combinatorics/Species/Simplify.hs -------------------------------------------------------------------------------- /Math/Combinatorics/Species/Structures.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/Math/Combinatorics/Species/Structures.hs -------------------------------------------------------------------------------- /Math/Combinatorics/Species/TH.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/Math/Combinatorics/Species/TH.hs -------------------------------------------------------------------------------- /Math/Combinatorics/Species/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/Math/Combinatorics/Species/Types.hs -------------------------------------------------------------------------------- /Math/Combinatorics/Species/Unlabeled.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/Math/Combinatorics/Species/Unlabeled.hs -------------------------------------------------------------------------------- /Math/Combinatorics/Species/Util/Interval.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/Math/Combinatorics/Species/Util/Interval.hs -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/doc/TODO -------------------------------------------------------------------------------- /info/TypeLC.lhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/info/TypeLC.lhs -------------------------------------------------------------------------------- /info/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/info/notes.txt -------------------------------------------------------------------------------- /info/oleg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/info/oleg.txt -------------------------------------------------------------------------------- /species.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/species.cabal -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/stack.yaml -------------------------------------------------------------------------------- /test/.ghci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/test/.ghci -------------------------------------------------------------------------------- /test/ListN.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/test/ListN.hs -------------------------------------------------------------------------------- /test/THTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/test/THTest.hs -------------------------------------------------------------------------------- /test/TreeTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byorgey/species/HEAD/test/TreeTest.hs --------------------------------------------------------------------------------