org.optaplanner.examples.tsp.persistence.SvgTspPathExporter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of optaplanner-examples Show documentation
Show all versions of optaplanner-examples Show documentation
OptaPlanner solves planning problems.
This lightweight, embeddable planning engine implements powerful and scalable algorithms
to optimize business resource scheduling and planning.
This module contains the examples which demonstrate how to use it in a normal Java application.
package org.optaplanner.examples.tsp.persistence;
import java.io.IOException;
import org.optaplanner.examples.common.persistence.AbstractTxtSolutionExporter;
import org.optaplanner.examples.common.persistence.SolutionConverter;
import org.optaplanner.examples.tsp.app.TspApp;
import org.optaplanner.examples.tsp.domain.Standstill;
import org.optaplanner.examples.tsp.domain.TspSolution;
import org.optaplanner.examples.tsp.domain.location.Location;
public class SvgTspPathExporter extends AbstractTxtSolutionExporter {
public static final String OUTPUT_FILE_SUFFIX = "path.svg";
public static void main(String[] args) {
SolutionConverter converter = SolutionConverter.createExportConverter(TspApp.DATA_DIR_NAME,
new SvgTspPathExporter(), new TspSolutionFileIO());
converter.convertAll();
}
@Override
public String getOutputFileSuffix() {
return OUTPUT_FILE_SUFFIX;
}
@Override
public TxtOutputBuilder createTxtOutputBuilder() {
return new SvgTspOutputBuilder();
}
public static class SvgTspOutputBuilder extends AbstractSvgTspOutputBuilder {
@Override
public void writeSolution() throws IOException {
determineSizeAndOffset(solution);
writeSvgHeader();
bufferedWriter.write(" ");
bufferedWriter.write("\n");
}
}
}