Skip to content
Snippets Groups Projects

Feature/kernel single paths

Merged Jakob Gahde requested to merge feature/kernel-single-paths into develop
All threads resolved!
Files
9
@@ -30,6 +30,11 @@ public class BasicProblemInstance extends BasicUndirectedGraph implements Proble
t = new HashMap<>();
}
public BasicProblemInstance(final Map<UndirectedEdge, Status> t) {
super();
this.t = new HashMap<>(t);
}
public BasicProblemInstance(final BasicProblemInstance parent) {
super(parent);
this.k = parent.k;
Loading