Class BooleanArrayValue
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.BooleanFormula,IntValue,BooleanValue,boolean[]>
de.uzl.its.swat.symbolic.value.reference.array.BooleanArrayValue
public class BooleanArrayValue
extends AbstractArrayValue<org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.BooleanFormula,IntValue,BooleanValue,boolean[]>
Wrapper for Arrays that contain boolean values.
-
Field Summary
Fields inherited from class de.uzl.its.swat.symbolic.value.reference.array.AbstractArrayValue
amgr, context, elementFormulaType, formulaType, indexFormulaType, parentRef, parentRefIdx, size
Fields inherited from class de.uzl.its.swat.symbolic.value.reference.ObjectValue
address, ADDRESS_UNKNOWN, className
-
Constructor Summary
ConstructorDescriptionBooleanArrayValue
(org.sosy_lab.java_smt.api.SolverContext context, boolean[] concrete, int address) BooleanArrayValue
(org.sosy_lab.java_smt.api.SolverContext context, IntValue size, int address) Creates a new symbolic array that contains boolean valuesBooleanArrayValue
(org.sosy_lab.java_smt.api.SolverContext context, IntValue size, int address, IntValue parentRefIdx, ArrayArrayValue parentRef) -
Method Summary
Modifier and TypeMethodDescriptiongetElement
(IntValue idx) Returns the formula that represents the element at the specified index.protected void
initArray
(boolean[] array) protected void
initArray
(int size) Initializes the array with the default value.void
storeElement
(IntValue idx, BooleanValue val) Stores the formula representing an element at the position specified by the index formula.toString()
Returns the string representation of the value used to visualize the stack.Methods inherited from class de.uzl.its.swat.symbolic.value.reference.array.AbstractArrayValue
asArrayValue, asByteArrayValue, asCharArrayValue, asDoubleArrayValue, asFloatArrayValue, asIntArrayValue, asLongArrayValue, asObjectArrayValue, asShortArrayValue, checkIndex, genericToString, getContext
Methods inherited from class de.uzl.its.swat.symbolic.value.reference.ObjectValue
asFloatValue, asIntValue, asObjectValue, equals, getAddress, getConcrete, getField, getFields, getnFields, IF_ACMPEQ, IF_ACMPNE, IFNONNULL, IFNULL, invokeMethod, MAKE_SYMBOLIC, MAKE_SYMBOLIC, setAddress, setField, setFields
Methods inherited from class de.uzl.its.swat.symbolic.value.Value
asBooleanValue, asByteValue, asCharValue, asDoubleValue, asLongValue, asNumericalValue, asShortValue, asStringValue, getBounds, getConcreteEncoded, getName, getType, initSymbolic, initSymbolic, MAKE_SYMBOLIC, reset
-
Constructor Details
-
BooleanArrayValue
public BooleanArrayValue(org.sosy_lab.java_smt.api.SolverContext context, IntValue size, int address) Creates a new symbolic array that contains boolean values- Parameters:
context
- The SolverContext to create formulas in the native Solver environment.size
- The size of the arrayaddress
- The address of the array reference
-
BooleanArrayValue
public BooleanArrayValue(org.sosy_lab.java_smt.api.SolverContext context, IntValue size, int address, IntValue parentRefIdx, ArrayArrayValue parentRef) -
BooleanArrayValue
public BooleanArrayValue(org.sosy_lab.java_smt.api.SolverContext context, boolean[] concrete, int address)
-
-
Method Details
-
initArray
protected void initArray(boolean[] array) -
getElement
Returns the formula that represents the element at the specified index.- Specified by:
getElement
in classAbstractArrayValue<org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,
org.sosy_lab.java_smt.api.BooleanFormula, IntValue, BooleanValue, boolean[]> - Parameters:
idx
- The formula that specifies the index.- Returns:
- The formula that specifies the retrieved/ retrievable element.
-
storeElement
Stores the formula representing an element at the position specified by the index formula.- Specified by:
storeElement
in classAbstractArrayValue<org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,
org.sosy_lab.java_smt.api.BooleanFormula, IntValue, BooleanValue, boolean[]> - 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 classAbstractArrayValue<org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,
org.sosy_lab.java_smt.api.BooleanFormula, IntValue, BooleanValue, boolean[]> - Parameters:
size
- The size of the array.
-
asBooleanArrayValue
- Overrides:
asBooleanArrayValue
in classAbstractArrayValue<org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,
org.sosy_lab.java_smt.api.BooleanFormula, IntValue, BooleanValue, boolean[]>
-
toString
Returns the string representation of the value used to visualize the stack. The representation is not complete.- Overrides:
toString
in classObjectValue<org.sosy_lab.java_smt.api.ArrayFormula<org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,
org.sosy_lab.java_smt.api.BooleanFormula>, boolean[]> - Returns:
- the string representation of the value.
-