A Road to Trouble
When programming in Java, you generally have collections of objects, as discussed here. Often, you want to create a variable (or constraint) for element of a collection. A bad approach is illustrated below:
Set<String> stringCollection = makeSomeStrings();//assume this is defined elsewhere IloCplex cplex = new IloCplex(); String[] stringToIndex = new String[stringCollection.size()]; IloIntVar[] variablesToIndex = cplex.boolVarArray(stringCollection.size()); int i = 0; for(String s: stringCollection){ stringToIndex[i++] = s; }
Then given a String from the collection, we could access the corresponding IloIntVar, and with an IloIntVar, we would access the corresponding String, with the following snippets
public IloIntVar getVariableForString(String s, String[] stringToIndex, IloIntVar[] variablesToIndex){ for(int i = 0; i < stringToIndex.length; i++){ if(stringToIndex[i].equals(s)){ return variablesToIndex[i]; } } return null; } public String getStringForVariable(IloIntVar v, String[] stringToIndex, IloIntVar[] variablesToIndex){ for(int i = 0; i < variablesToIndex.length; i++){ if(variablesToIndex[i] == v){ return stringToIndex[i]; } } return null; }
There are several reasons to be concerned with this.
- For \( n \) variables, access time takes \( O(n) \) .
- We are maintaining two data structures and an index by hand, which leave a lot of room for programmer error
- We cannot add new variables at a later date
We can eliminate any chance of an indexing error and improve our access time to \( O(1) \) by replacing our two arrays by two HashMaps, e.g.
Set<String> stringCollection = makeSomeStrings();//assume this is defined elsewhere IloCplex cplex = new IloCplex(); Map<String,IloIntVar> stringToVariable = new HashMap<String,IloIntVar>(); Map<IloIntVar,String> variableToString = new HashMap<IloIntVar,String>(); for(String s: stringCollection){ IloIntVar v = cplex.boolVar(); stringToVariable.put(s,v); variableToString.put(v,s); }
However, we are still maintaining two separate data structures which we need to keep synchronized, which is asking for trouble.
Good Style
Instead, we use Guava's special data structure, the ImmutableBiMap, which will maintain two HashMaps for us (and as a bonus, prevent any accidental modifications once we build the map). The following methods can be found in Util.java in your project:
public static <T> ImmutableBiMap<T,IloIntVar> makeBinaryVariables(IloCplex cplex, Iterable<T> set) throws IloException{ Builder<T,IloIntVar> ans = ImmutableBiMap.builder(); for(T t: set){ ans.put(t, cplex.boolVar()); } return ans.build(); }
Now the unfortunate code from before can be replaced by
Set<String> stringCollection = makeSomeStrings();//assume this is defined elsewhere IloCplex cplex = new IloCplex(); ImmutableBiMap<String,IloIntVar> stringVarBiMap = Util.makeBinaryVariables(cplex,stringCollection); for(String s: stringCollection){ stringVarMap.put(s,cplex.boolVar()); } public IloIntVar getVariableForString(String s, ImmutableBiMap<String,IloIntVar> stringVarBiMap){ return stringVarBiMap.get(s); } public String getStringForVariable(IloIntVar v, ImmutableBiMap<String,IloIntVar> stringVarBiMap){ return stringVarBiMap.inverse().get(v); }
There are a few additional methods in the class Util for creating IloLinearIntExpr objects and IloLinearNumExpr objects designed to keep your code organized and error free. They use another Guava class, Function, (see here for Javadoc). The idea of a Function<F,T> is simple, they take in any object of type F and produce some object of type T.
Method Name |
Return Type |
Arguments |
Description |
---|---|---|---|
apply |
T |
F input |
Returns the result of applying this function to input. |
We now give the specifications for the other static functions in Util
public static <T> IloLinearIntExpr integerSum(IloCplex cplex, BiMap<T,IloIntVar> variables, Iterable<T> set, Function<? super T,Integer> coefficients) throws IloException{ IloLinearIntExpr sum = cplex.linearIntExpr(); for(T t: set){ sum.addTerm(variables.get(t), coefficients.apply(t)); } return sum; } public static <T> IloLinearIntExpr integerSum(IloCplex cplex, BiMap<T,IloIntVar> variables, Iterable<T> set) throws IloException{ return integerSum(cplex,variables,set,unity); } private static Function<Object,Integer> unity = new Function<Object,Integer>(){ @Override public Integer apply(Object arg0) { return 1; }};