loadModel method

void loadModel()

Reloads the model from the model CONF file. Because the policy is attached to a model, so the policy is invalidated and needs to be reloaded by calling loadPolicy().

Implementation

void loadModel() {
  model = newModel();
  model.loadModel(modelPath);
  model.printModel();
  //fm = FunctionMap.loadFunctionMap();
}