Skip to content
Snippets Groups Projects
Commit c87fe7f2 authored by Peter Wagenhuber's avatar Peter Wagenhuber
Browse files

konzeptionelle reorga: als basis fuer die dropletsequenzberechnung dient nun...

konzeptionelle reorga: als basis fuer die dropletsequenzberechnung dient nun eine tabelle mit bifurcations
parent 1e3ad4d5
No related branches found
No related tags found
No related merge requests found
package nloc;
public class BFTableEntry {
private int minTimediff, maxTimediff;
private int noOfDroplets;
private int bfPathPriority;
public BFTableEntry(int bfPathPriority, int noOfDroplets, int minTimediff,
int maxTimediff) {
this.minTimediff = minTimediff;
this.maxTimediff = maxTimediff;
this.noOfDroplets = noOfDroplets;
this.bfPathPriority = bfPathPriority;
}
public int getMinTimediff() {
return minTimediff;
}
public int getMaxTimediff() {
return maxTimediff;
}
public int getNoOfDroplets() {
return noOfDroplets;
}
public int getBfPathPriority() {
return bfPathPriority;
}
public void setMinTimediff(int minTimediff) {
this.minTimediff = minTimediff;
}
public void setMaxTimediff(int maxTimediff) {
this.maxTimediff = maxTimediff;
}
public void setNoOfDroplets(int noOfDroplets) {
this.noOfDroplets = noOfDroplets;
}
public void setBfPathPriority(int bfPathPriority) {
this.bfPathPriority = bfPathPriority;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment