//! A library for parsing TSPLIB file formats.
//!
//! The original [documentation](http://comopt.ifi.uni-heidelberg.de/software/TSPLIB95/) for TSPLIB
//! can be found in the website of Ruprecht-Karls-Universität Heidelberg.
/// Macro for implementing trait Display for Enums.
pub use ParseTspError;
pub use CoordKind;
pub use DisplayKind;
pub use EdgeFormat;
pub use Point;
pub use Tsp;
pub use TspBuilder;
pub use TspKind;
pub use WeightFormat;
pub use WeightKind;