├── README.md ├── ergothic ├── .gitignore ├── Cargo.toml └── src │ ├── accumulate.rs │ ├── export.rs │ ├── lib.rs │ ├── measure.rs │ ├── simulation.rs │ └── startup.rs └── examples ├── mean_powers_of_x ├── .gitignore ├── Cargo.lock ├── Cargo.toml └── src │ └── main.rs └── quantum_oscillator ├── .gitignore ├── Cargo.lock ├── Cargo.toml └── src └── main.rs /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caphindsight/ergothic/HEAD/README.md -------------------------------------------------------------------------------- /ergothic/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /ergothic/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caphindsight/ergothic/HEAD/ergothic/Cargo.toml -------------------------------------------------------------------------------- /ergothic/src/accumulate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caphindsight/ergothic/HEAD/ergothic/src/accumulate.rs -------------------------------------------------------------------------------- /ergothic/src/export.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caphindsight/ergothic/HEAD/ergothic/src/export.rs -------------------------------------------------------------------------------- /ergothic/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caphindsight/ergothic/HEAD/ergothic/src/lib.rs -------------------------------------------------------------------------------- /ergothic/src/measure.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caphindsight/ergothic/HEAD/ergothic/src/measure.rs -------------------------------------------------------------------------------- /ergothic/src/simulation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caphindsight/ergothic/HEAD/ergothic/src/simulation.rs -------------------------------------------------------------------------------- /ergothic/src/startup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caphindsight/ergothic/HEAD/ergothic/src/startup.rs -------------------------------------------------------------------------------- /examples/mean_powers_of_x/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | -------------------------------------------------------------------------------- /examples/mean_powers_of_x/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caphindsight/ergothic/HEAD/examples/mean_powers_of_x/Cargo.lock -------------------------------------------------------------------------------- /examples/mean_powers_of_x/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caphindsight/ergothic/HEAD/examples/mean_powers_of_x/Cargo.toml -------------------------------------------------------------------------------- /examples/mean_powers_of_x/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caphindsight/ergothic/HEAD/examples/mean_powers_of_x/src/main.rs -------------------------------------------------------------------------------- /examples/quantum_oscillator/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | -------------------------------------------------------------------------------- /examples/quantum_oscillator/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caphindsight/ergothic/HEAD/examples/quantum_oscillator/Cargo.lock -------------------------------------------------------------------------------- /examples/quantum_oscillator/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caphindsight/ergothic/HEAD/examples/quantum_oscillator/Cargo.toml -------------------------------------------------------------------------------- /examples/quantum_oscillator/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caphindsight/ergothic/HEAD/examples/quantum_oscillator/src/main.rs --------------------------------------------------------------------------------