/**
* Decode the Integer representation to an executable VecInstruction.
*/
public static VecInstruction getInstruction(int val, int graphSize) {
VecSymbol operator = getSymbol(val);
int lower = val & 0x7FFF;
int higher = (val >>> 15) & 0x7FFF;
lower = (lower % (graphSize)) + 1;