Skip to content

vrprep-model-0.1.4

Compare
Choose a tag to compare
@hlobit hlobit released this 10 Oct 12:41
· 23 commits to master since this release

For convenience, the project now includes a basic instance reader and writer, that you may use this way :

import java.io.File;
import org.vrprep.model.instance.Instance;
import org.vrprep.model.util.Instances;
...
Instance instance = Instances.read(inputPath);
File file = Instances.write(instance, outputPath);