Browse Source
New class to encapsulate results from PRISM engine.
New class to encapsulate results from PRISM engine.
git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@693 bbc10eb1-c90d-0410-af57-cb519fbb1720master
11 changed files with 113 additions and 34 deletions
-
4prism/src/prism/ModelChecker.java
-
14prism/src/prism/Prism.java
-
6prism/src/prism/PrismCL.java
-
57prism/src/prism/Result.java
-
32prism/src/prism/StateModelChecker.java
-
8prism/src/userinterface/properties/GUIExperiment.java
-
4prism/src/userinterface/properties/GUIMultiProperties.java
-
1prism/src/userinterface/properties/GUIPropertiesEvent.java
-
4prism/src/userinterface/properties/GUIPropertyResultDialog.java
-
7prism/src/userinterface/properties/computation/ModelCheckThread.java
-
10prism/src/userinterface/properties/computation/SimulateModelCheckThread.java
@ -0,0 +1,57 @@ |
|||
//============================================================================== |
|||
// |
|||
// Copyright (c) 2002- |
|||
// Authors: |
|||
// * Dave Parker <david.parker@comlab.ox.ac.uk> (University of Oxford, formerly University of Birmingham) |
|||
// * Andrew Hinton <ug60axh@cs.bham.ac.uk> (University of Birmingham) |
|||
// * Mark Kattenbelt <mark.kattenbelt@comlab.ox.ac.uk> (University of Oxford) |
|||
// |
|||
//------------------------------------------------------------------------------ |
|||
// |
|||
// This file is part of PRISM. |
|||
// |
|||
// PRISM is free software; you can redistribute it and/or modify |
|||
// it under the terms of the GNU General Public License as published by |
|||
// the Free Software Foundation; either version 2 of the License, or |
|||
// (at your option) any later version. |
|||
// |
|||
// PRISM is distributed in the hope that it will be useful, |
|||
// but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
// GNU General Public License for more details. |
|||
// |
|||
// You should have received a copy of the GNU General Public License |
|||
// along with PRISM; if not, write to the Free Software Foundation, |
|||
// Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|||
// |
|||
//============================================================================== |
|||
|
|||
package prism; |
|||
|
|||
/** |
|||
* This class stores the result of a single verification/simulation. |
|||
*/ |
|||
public class Result |
|||
{ |
|||
private Object result = null; |
|||
|
|||
public Result() |
|||
{ |
|||
this.result = null; |
|||
} |
|||
|
|||
public Result(Object result) |
|||
{ |
|||
this.result = result; |
|||
} |
|||
|
|||
public Object getResult() |
|||
{ |
|||
return result; |
|||
} |
|||
|
|||
public void setResult(Object result) |
|||
{ |
|||
this.result = result; |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue