public final Fleet fleet;
public Context(Fleet fleet) { this.fleet = fleet; }
+ private boolean autoflush = false;
+ public void setAutoflush(boolean a) { this.autoflush = a; }
+
// FIXME: ability for a group of Contexts to share an "allocation
// pool" because they will run concurrently.
public HashSet<Ship> allocatedShips = new HashSet<Ship>();
// FEATURE: clever instruction re-oredering?
}
- private boolean autoflush = false;
- public void setAutoflush(boolean a) { this.autoflush = a; }
-
/**
* The code emitted by this method makes the following assumptions:
*