├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .vscode └── settings.json ├── Cargo.toml ├── README.md ├── rust-toolchain └── src ├── circulant.rs ├── lib.rs └── toeplitz.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/fk/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/fk/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/fk/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/fk/HEAD/README.md -------------------------------------------------------------------------------- /rust-toolchain: -------------------------------------------------------------------------------- 1 | 1.66.0 -------------------------------------------------------------------------------- /src/circulant.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/fk/HEAD/src/circulant.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/fk/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/toeplitz.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geometryxyz/fk/HEAD/src/toeplitz.rs --------------------------------------------------------------------------------