Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class SpatialKappaSim

public SpatialKappaSim(String timeUnits, boolean verbose) {
this.verbose = verbose;
Map<String, Double> allowedTimeUnits = new <String, Double>HashMap();
Map<String, Double> allowedTimeUnits = new HashMap<String, Double>();
allowedTimeUnits.put("s" , new Double(1E-3));
allowedTimeUnits.put("ms", new Double(1.0));
if (!allowedTimeUnits.containsKey(timeUnits)) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,11 @@ public void stop() {
public String getDebugOutput() {
return null;
}

public void runByTime2(float stepEndTime) {
// TODO Auto-generated method stub

}

}

Expand Down