Browse Source

Changing visibility in ConstructModel

git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@7272 bbc10eb1-c90d-0410-af57-cb519fbb1720
master
Mateusz Ujma 13 years ago
parent
commit
59a3cf9cde
  1. 8
      prism/src/explicit/ConstructModel.java

8
prism/src/explicit/ConstructModel.java

@ -50,16 +50,16 @@ import simulator.SimulatorEngine;
public class ConstructModel extends PrismComponent public class ConstructModel extends PrismComponent
{ {
// The simulator engine // The simulator engine
private SimulatorEngine engine;
protected SimulatorEngine engine;
// Options: // Options:
// Find deadlocks during model construction? // Find deadlocks during model construction?
private boolean findDeadlocks = true;
protected boolean findDeadlocks = true;
// Automatically fix deadlocks? // Automatically fix deadlocks?
private boolean fixDeadlocks = true;
protected boolean fixDeadlocks = true;
// Details of built model // Details of built model
private List<State> statesList;
protected List<State> statesList;
public ConstructModel(PrismComponent parent, SimulatorEngine engine) throws PrismException public ConstructModel(PrismComponent parent, SimulatorEngine engine) throws PrismException
{ {

Loading…
Cancel
Save