├── .gitignore ├── .travis.yml ├── LICENSE ├── Manifest.toml ├── Project.toml ├── README.md ├── src ├── backandforth.jl ├── forward.jl ├── intro.jl ├── notebooks.jl ├── reverse.jl ├── tracing.jl └── utils.jl └── test └── runtests.jl /.gitignore: -------------------------------------------------------------------------------- 1 | notebooks 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeInnes/diff-zoo/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeInnes/diff-zoo/HEAD/LICENSE -------------------------------------------------------------------------------- /Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeInnes/diff-zoo/HEAD/Manifest.toml -------------------------------------------------------------------------------- /Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeInnes/diff-zoo/HEAD/Project.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeInnes/diff-zoo/HEAD/README.md -------------------------------------------------------------------------------- /src/backandforth.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeInnes/diff-zoo/HEAD/src/backandforth.jl -------------------------------------------------------------------------------- /src/forward.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeInnes/diff-zoo/HEAD/src/forward.jl -------------------------------------------------------------------------------- /src/intro.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeInnes/diff-zoo/HEAD/src/intro.jl -------------------------------------------------------------------------------- /src/notebooks.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeInnes/diff-zoo/HEAD/src/notebooks.jl -------------------------------------------------------------------------------- /src/reverse.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeInnes/diff-zoo/HEAD/src/reverse.jl -------------------------------------------------------------------------------- /src/tracing.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeInnes/diff-zoo/HEAD/src/tracing.jl -------------------------------------------------------------------------------- /src/utils.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeInnes/diff-zoo/HEAD/src/utils.jl -------------------------------------------------------------------------------- /test/runtests.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeInnes/diff-zoo/HEAD/test/runtests.jl --------------------------------------------------------------------------------