walky 1.1.0

A TSP solver written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
use std::error::Error;

use clap::Parser;
use walky::cli::Cli;

/// parse the command line arguments and pass them to `[walky::run]`
fn main() -> Result<(), Box<dyn Error>> {
    let cli = Cli::parse();
    walky::run(cli)
}