Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 1.01 KB

README.md

File metadata and controls

35 lines (24 loc) · 1.01 KB

Solver

Gitpod

Algorithms to find shortest and simplest possible functions for given input and output data ranges.

Prerequsites

Usually it is enough to use rust-toolchain.toml file for cargo configuration. In case you need to install required toolchain manually, you can use that command:

rustup toolchain install nightly-2022-08-22 && cargo +nightly-2022-08-22 build

Run

cargo run

Troubleshooting

If you get error:

error: package `bumpalo v3.16.0` cannot be built because it requires rustc 1.73.0 or newer, while the currently active rustc version is 1.65.0-nightly
Either upgrade to rustc 1.73.0 or newer, or use
cargo update -p [email protected] --precise ver
where `ver` is the latest version of `bumpalo` supporting rustc 1.65.0-nightly

You might need to execute this command:

cargo update -p [email protected] --precise 3.11.1