Class DoubleArrayValue

java.lang.Object
de.uzl.its.swat.symbolic.value.Value<T,K>
de.uzl.its.swat.symbolic.value.reference.ObjectValue<org.sosy_lab.java_smt.api.ArrayFormula<TI,TE>,K>
de.uzl.its.swat.symbolic.value.reference.array.AbstractArrayValue<org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,IntValue,DoubleValue,double[]>
de.uzl.its.swat.symbolic.value.reference.array.DoubleArrayValue

public class DoubleArrayValue extends AbstractArrayValue<org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,IntValue,DoubleValue,double[]>
Wrapper for Arrays that contain double values.
  • Constructor Details

    • DoubleArrayValue

      public DoubleArrayValue(org.sosy_lab.java_smt.api.SolverContext context, IntValue size, int address)
      Creates a new symbolic array that contains double values
      Parameters:
      context - The SolverContext to create formulas in the native Solver environment.
      size - The size of the array
      address - The address of the array reference
    • DoubleArrayValue

      public DoubleArrayValue(org.sosy_lab.java_smt.api.SolverContext context, IntValue size, int address, IntValue parentRefIdx, ArrayArrayValue parentRef)
    • DoubleArrayValue

      public DoubleArrayValue(org.sosy_lab.java_smt.api.SolverContext context, double[] concrete, int address)
  • Method Details

    • getElement

      public DoubleValue getElement(IntValue idx)
      Returns the formula that represents the element at the specified index.
      Specified by:
      getElement in class AbstractArrayValue<org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,IntValue,DoubleValue,double[]>
      Parameters:
      idx - The formula that specifies the index.
      Returns:
      The formula that specifies the retrieved/ retrievable element.
    • storeElement

      public void storeElement(IntValue idx, DoubleValue val)
      Stores the formula representing an element at the position specified by the index formula.
      Specified by:
      storeElement in class AbstractArrayValue<org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,IntValue,DoubleValue,double[]>
      Parameters:
      idx - The index formula.
      val - The element formula.
    • initArray

      protected void initArray(int size)
      Initializes the array with the default value.
      Specified by:
      initArray in class AbstractArrayValue<org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,IntValue,DoubleValue,double[]>
      Parameters:
      size - The size of the array.
    • initArray

      protected void initArray(double[] array)
    • asDoubleArrayValue

      public DoubleArrayValue asDoubleArrayValue()
      Overrides:
      asDoubleArrayValue in class AbstractArrayValue<org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,IntValue,DoubleValue,double[]>
    • toString

      public String toString()
      Returns the string representation of the value used to visualize the stack. The representation is not complete.
      Overrides:
      toString in class ObjectValue<org.sosy_lab.java_smt.api.ArrayFormula<org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.FloatingPointFormula>,double[]>
      Returns:
      the string representation of the value.