problem_generator/
lib.rs

1/*!
2
3The problem generator crate for TD Mk Landscape benchmark generation.
4
5## Quick Start
6
7### Library
8
9To use problem_generator in your project, you can simply add problem_generator into your ```cargo.toml```:
10
11```toml
12[dependencies]
13problem_generator = "^0.3.0"
14```
15*/
16
17#[macro_use]
18extern crate log;
19
20extern crate structopt;
21extern crate structopt_derive;
22
23///The parent module for all the functional modules
24pub mod problem;