// define variables
for (BIFVariable v : this.bifVariables) {
List<BayesianChoice> c = new ArrayList<BayesianChoice>();
int index = 0;
for(String s : v.getOptions() ) {
c.add(new BayesianChoice(s,index++));
}
this.network.createEvent(v.getName(), c);
}