extern crate num_cpus;
extern crate petgraph;
extern crate structopt;
#[macro_use]
extern crate log;
extern crate env_logger;
extern crate rand;
extern crate threadpool;
pub mod activities;
pub mod ant;
pub mod colony;
pub mod cycle;
pub mod io;
#[derive(Clone, Debug)]
pub enum Objective {
VisitAllNodes,
VisitNNodes(usize),
ReachNodeIdx(usize),
ReachDeadEnd,
}