Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/linksplatform/solver
Algorithms to find shortest and simplest possible functions for given input and output data ranges.
https://github.com/linksplatform/solver
Last synced: about 2 months ago
JSON representation
Algorithms to find shortest and simplest possible functions for given input and output data ranges.
- Host: GitHub
- URL: https://github.com/linksplatform/solver
- Owner: linksplatform
- License: unlicense
- Created: 2022-08-25T13:48:11.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-20T19:11:47.000Z (3 months ago)
- Last Synced: 2024-10-22T02:52:39.505Z (2 months ago)
- Language: Rust
- Size: 318 KB
- Stars: 2
- Watchers: 4
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Solver
[![Gitpod](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/linksplatform/solver)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:
```bash
rustup toolchain install nightly-2022-08-22 && cargo +nightly-2022-08-22 build
```## Run
```bash
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:
```bash
cargo update -p [email protected] --precise 3.11.1
```