1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*!

The problem generator crate for TD Mk Landscape benchmark generation.

## Quick Start

### Library

To use problem_generator in your project, you can simply add problem_generator into your ```cargo.toml```:

```toml
[dependencies]
problem_generator = "^0.3.0"
```
*/

#[macro_use]
extern crate log;

extern crate structopt;
extern crate structopt_derive;

///The parent module for all the functional modules
pub mod problem;