vrp_parser 0.1.1

A library for parsing VRPLib-formatted files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub(crate) mod edge_weight_format;
pub(crate) mod edge_weight_type;
pub(crate) mod lexer;
pub(crate) mod node_coord_type;
pub(crate) mod parser;
pub(crate) mod problem_type;
pub(crate) mod reader;
pub(crate) mod token;

use edge_weight_format::{EdgeWeightFormat, ParseEdgeWeightFormatError};
use edge_weight_type::{EdgeWeightType, ParseEdgeWeightTypeError};
use node_coord_type::{NodeCoordType, ParseNodeCoordTypeError};
use parser::ParseError;
use problem_type::ParseProblemTypeError;
use token::{Token, TokenError};