Browse Source
Small fixes in explicit rewards.
Small fixes in explicit rewards.
git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@3375 bbc10eb1-c90d-0410-af57-cb519fbb1720master
5 changed files with 15 additions and 72 deletions
-
4prism/src/explicit/CTMCModelChecker.java
-
2prism/src/explicit/ProbModelChecker.java
-
18prism/src/explicit/rewards/ConstructRewards.java
-
57prism/src/explicit/rewards/MCRewardsStateConstant.java
-
6prism/src/explicit/rewards/StateRewardsArray.java
@ -1,57 +0,0 @@ |
|||||
//============================================================================== |
|
||||
// |
|
||||
// Copyright (c) 2002- |
|
||||
// Authors: |
|
||||
// * Dave Parker <david.parker@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 explicit.rewards; |
|
||||
|
|
||||
/** |
|
||||
* Explicit-state storage of constant state rewards for a DTMC/CTMC. |
|
||||
*/ |
|
||||
public class MCRewardsStateConstant implements MCRewards, MDPRewards |
|
||||
{ |
|
||||
protected double stateReward = 0.0; |
|
||||
|
|
||||
/** |
|
||||
* Constructor: all rewards equal to {@code r} |
|
||||
*/ |
|
||||
public MCRewardsStateConstant(double r) |
|
||||
{ |
|
||||
stateReward = r; |
|
||||
} |
|
||||
|
|
||||
// Accessors |
|
||||
|
|
||||
@Override |
|
||||
public double getStateReward(int s) |
|
||||
{ |
|
||||
return stateReward; |
|
||||
} |
|
||||
|
|
||||
@Override |
|
||||
public double getTransitionReward(int s, int i) |
|
||||
{ |
|
||||
return 0.0; |
|
||||
} |
|
||||
} |
|
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue