Initial import
[jpf-core.git] / src / main / gov / nasa / jpf / vm / choice / FloatChoiceFromList.java
1 /*
2  * Copyright (C) 2014, United States Government, as represented by the
3  * Administrator of the National Aeronautics and Space Administration.
4  * All rights reserved.
5  *
6  * The Java Pathfinder core (jpf-core) platform is licensed under the
7  * Apache License, Version 2.0 (the "License"); you may not use this file except
8  * in compliance with the License. You may obtain a copy of the License at
9  * 
10  *        http://www.apache.org/licenses/LICENSE-2.0. 
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and 
16  * limitations under the License.
17  */
18
19 package gov.nasa.jpf.vm.choice;
20
21 import gov.nasa.jpf.Config;
22 import gov.nasa.jpf.JPFException;
23 import gov.nasa.jpf.vm.FloatChoiceGenerator;
24
25 public class FloatChoiceFromList extends NumberChoiceFromList<Float> implements FloatChoiceGenerator {
26
27   
28   @Override
29   protected Float[] createValueArray(int len){
30     return new Float[len];
31   }
32   @Override
33   protected Float getDefaultValue() {
34     return 0.0f;
35   }
36     
37   @Override
38   public Class<Float> getChoiceType(){
39     return Float.class;
40   }
41     
42   @Override
43   protected Float parseLiteral (String literal, int sign){
44     Float val = Float.parseFloat(literal);
45     return new Float( val * sign);
46   }
47   
48   @Override
49   protected Float newValue (Number num, int sign){
50     return new Float( num.intValue() * sign);
51   }
52   
53   /**
54    *  super constructor for subclasses that want to configure themselves
55    * @param id name used in choice config
56    */
57   protected FloatChoiceFromList(String id){
58     super(id);
59   }
60
61   protected FloatChoiceFromList (String id, Float[] vals){
62     super(id, vals);
63   }
64   
65   public FloatChoiceFromList(Config conf, String id) {
66     super(conf, id);
67   }
68
69   public FloatChoiceFromList(String id, float... val){
70     super(id);
71
72     if (val != null){
73       values = new Float[val.length];
74       for (int i=0; i<val.length; i++){
75         values[i] = val[i];  // enable use of cached Float values
76       }
77     } else {
78       throw new JPFException("empty set for FloatChoiceFromList");
79     }
80
81     count = -1;
82   }
83
84 }