Home
last modified time | relevance | path

Searched refs:RandomVariableBase (Results 1 – 2 of 2) sorted by relevance

/packages/modules/NeuralNetworks/runtime/test/fuzzing/
DRandomVariable.h93 struct RandomVariableBase { struct
104 std::shared_ptr<RandomVariableBase> parent1 = nullptr; argument
105 std::shared_ptr<RandomVariableBase> parent2 = nullptr; argument
106 std::vector<std::weak_ptr<RandomVariableBase>> children; argument
111 explicit RandomVariableBase(int value); argument
112 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 …]
DRandomVariable.cpp33 unsigned int RandomVariableBase::globalIndex = 0;
36 RandomVariableBase::RandomVariableBase(int value) in RandomVariableBase() function in android::nn::fuzzing_test::RandomVariableBase
43 RandomVariableBase::RandomVariableBase(int lower, int upper) in RandomVariableBase() function in android::nn::fuzzing_test::RandomVariableBase
49 RandomVariableBase::RandomVariableBase(const std::vector<int>& choices) in RandomVariableBase() function in android::nn::fuzzing_test::RandomVariableBase
55 RandomVariableBase::RandomVariableBase(const RandomVariableNode& lhs, const RandomVariableNode& rhs, in RandomVariableBase() function in android::nn::fuzzing_test::RandomVariableBase
90 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 …]