Searched refs:RandomVariableBase (Results 1 – 2 of 2) sorted by relevance
93 struct RandomVariableBase { struct104 std::shared_ptr<RandomVariableBase> parent1 = nullptr; argument105 std::shared_ptr<RandomVariableBase> parent2 = nullptr; argument106 std::vector<std::weak_ptr<RandomVariableBase>> children; argument111 explicit RandomVariableBase(int value); argument112 RandomVariableBase(int lower, int upper);113 explicit RandomVariableBase(const std::vector<int>& choices);114 RandomVariableBase(const std::shared_ptr<RandomVariableBase>& lhs,115 const std::shared_ptr<RandomVariableBase>& rhs,117 RandomVariableBase(const RandomVariableBase&) = delete;[all …]
33 unsigned int RandomVariableBase::globalIndex = 0;36 RandomVariableBase::RandomVariableBase(int value) in RandomVariableBase() function in android::nn::fuzzing_test::RandomVariableBase43 RandomVariableBase::RandomVariableBase(int lower, int upper) in RandomVariableBase() function in android::nn::fuzzing_test::RandomVariableBase49 RandomVariableBase::RandomVariableBase(const std::vector<int>& choices) in RandomVariableBase() function in android::nn::fuzzing_test::RandomVariableBase55 RandomVariableBase::RandomVariableBase(const RandomVariableNode& lhs, const RandomVariableNode& rhs, in RandomVariableBase() function in android::nn::fuzzing_test::RandomVariableBase90 void RandomVariableBase::freeze() { in freeze()96 int RandomVariableBase::getValue() const { in getValue()108 void RandomVariableBase::updateTimestamp() { in updateTimestamp()113 RandomVariable::RandomVariable(int value) : mVar(new RandomVariableBase(value)) { in RandomVariable()117 RandomVariable::RandomVariable(int lower, int upper) : mVar(new RandomVariableBase(lower, upper)) { in RandomVariable()[all …]