MCPcopy Create free account

hub / github.com/NeuralNetworkVerification/Marabou / functions

Functions4,559 in github.com/NeuralNetworkVerification/Marabou

MethodSignConstraint
src/engine/SignConstraint.cpp:33
MethodSignalHandler
Prevent additional instantiations of the class */
src/common/SignalHandler.h:56
MethodSmtCore
src/engine/SmtCore.cpp:31
MethodSoftmaxConstraint
src/engine/SoftmaxConstraint.cpp:32
MethodSparseColumnsOfBasis
src/basis_factorization/SparseColumnsOfBasis.cpp:20
MethodSparseEtaMatrix
src/basis_factorization/SparseEtaMatrix.cpp:25
MethodSparseFTFactorization
src/basis_factorization/SparseFTFactorization.cpp:24
MethodSparseGaussianEliminator
src/basis_factorization/SparseGaussianEliminator.cpp:28
MethodSparseLUFactorization
src/basis_factorization/SparseLUFactorization.cpp:26
MethodSparseLUFactors
src/basis_factorization/SparseLUFactors.cpp:23
MethodSparseUnsortedArray
src/basis_factorization/SparseUnsortedArray.cpp:23
MethodSparseUnsortedArrays
src/basis_factorization/SparseUnsortedArrays.cpp:24
MethodSparseUnsortedList
src/basis_factorization/SparseUnsortedList.cpp:22
MethodSparseUnsortedLists
src/basis_factorization/SparseUnsortedLists.cpp:24
MethodStaticSuiteDescription
tools/cxxtest/cxxtest/RealDescriptions.cpp:155
MethodStatistics
src/common/Statistics.cpp:21
MethodStdioFilePrinter
tools/cxxtest/cxxtest/StdioFilePrinter.h:19
MethodStdioPrinter
tools/cxxtest/cxxtest/StdioPrinter.h:17
MethodString
src/common/MString.cpp:20
MethodString
src/common/MString.h:34
MethodStringf
src/common/MStringf.h:31
MethodSubQuery
src/engine/SubQuery.h:30
MethodSumOfInfeasibilitiesManager
src/engine/SumOfInfeasibilitiesManager.cpp:23
MethodTableau
src/engine/Tableau.cpp:38
MethodTableauRow
src/engine/TableauRow.cpp:20
MethodTableauState
src/engine/TableauState.cpp:23
MethodTeeListener
tools/cxxtest/cxxtest/TeeListener.h:16
MethodTerm
src/common/GurobiWrapper.h:39
MethodTestAbsConstraint
src/engine/tests/Test_AbsoluteValueConstraint.h:38
MethodTestDisjunctionConstraint
src/engine/tests/Test_DisjunctionConstraint.h:35
MethodTestLeakyReluConstraint
src/engine/tests/Test_LeakyReluConstraint.h:39
MethodTestListener
tools/cxxtest/cxxtest/TestListener.h:20
MethodTestMaxConstraint
src/engine/tests/Test_MaxConstraint.h:37
MethodTestMultiplication
tools/cxxtest/sample/SimpleTest.h:27
MethodTestReluConstraint
src/engine/tests/Test_ReluConstraint.h:41
MethodTestSigmoidConstraint
src/engine/tests/Test_SigmoidConstraint.h:35
MethodTestSignConstraint
src/engine/tests/Test_SignConstraint.h:37
MethodTestTracker
tools/cxxtest/cxxtest/TestTracker.cpp:10
MethodThreadArgument
src/nlr/ParallelSolver.h:43
MethodTightening
src/engine/Tightening.h:29
MethodTrailEntry
src/engine/TrailEntry.h:48
MethodUnsatCertificateNode
src/proofs/UnsatCertificateNode.cpp:19
MethodUserContext
disable copy, assignment
deps/CVC4/context/context.h:211
MethodValueTraits
tools/cxxtest/cxxtest/StdValueTraits.h:110
MethodValueTraits
tools/cxxtest/cxxtest/StdValueTraits.h:123
MethodValueTraits
tools/cxxtest/cxxtest/StdValueTraits.h:136
MethodValueTraits
tools/cxxtest/cxxtest/StdValueTraits.h:149
MethodValueTraits
tools/cxxtest/cxxtest/StdValueTraits.h:162
MethodValueTraits
tools/cxxtest/cxxtest/StdValueTraits.h:175
MethodValueTraits
tools/cxxtest/cxxtest/StdValueTraits.h:188
MethodValueTraits
tools/cxxtest/cxxtest/StdValueTraits.h:201
MethodValueTraits
tools/cxxtest/cxxtest/StdValueTraits.h:214
MethodValueTraits
tools/cxxtest/cxxtest/ValueTraits.h:80
MethodVector<T>
src/common/Vector.h:36
MethodWorldGuard
tools/cxxtest/cxxtest/TestRunner.h:108
MethodYesNoRunner
tools/cxxtest/cxxtest/YesNoRunner.h:17
Method__add__
Addition of a neuron's affine transformation with a constant or another affine transformation. e.g., a * x + b + b' or a * x + b + a'
maraboupy/MarabouPythonic.py:40
Method__eq__
The == operator between an affine transformation and a constant or between two affine transformations. e.g., a * x + b == b' or a * x
maraboupy/MarabouPythonic.py:187
Method__ge__
The >= operator between an affine transformation and a constant or between two affine transformations. e.g., a * x + b >= b' or a * x
maraboupy/MarabouPythonic.py:167
Method__init__
(self, filename, inputNames=None, outputNames=None)
maraboupy/MarabouNetworkONNX.py:34
Method__init__
Construct empty equation
maraboupy/MarabouUtils.py:27
Method__init__
(self, filename, inputNames=None, outputNames=None, modelType="frozen", savedModelTags=[])
maraboupy/MarabouNetworkTF.py:52
Method__init__
Constructs a MarabouNetwork object and calls function to initialize
maraboupy/MarabouNetwork.py:41
Method__init__
(self, filename='', normalize=False)
maraboupy/MarabouNetworkNNet.py:55
Method__init__
Should not be called directly. Use `ONNXParser.parse` instead. :meta private:
maraboupy/parsers/ONNXParser.py:52
Method__init__
Constructs a MarabouNetwork object and calls function to initialize
maraboupy/parsers/InputQueryBuilder.py:27
Method__le__
The <= operator between an affine transformation and a constant or between two affine transformations. e.g., a * x + b <= b' or a * x
maraboupy/MarabouPythonic.py:147
Method__neg__
Negation of a neuron's affine transformation. e.g., - (a * x + b) is - a * x - b. Note: negation is implemented via multiplyi
maraboupy/MarabouPythonic.py:137
Method__radd__
Reverse addition of a neuron's affine transformation with a constant or another affine transformation. e.g., b' + a * x + b or a' * x
maraboupy/MarabouPythonic.py:78
Method__rmul__
Reverse multiplication of a neuron's affine transformation with a constant. e.g., b' * (a * x + b) is supported while (a' * x' + b')
maraboupy/MarabouPythonic.py:126
Method__rsub__
Reverse subtraction of a neuron's affine transformation with a constant or another affine transformation. e.g., b' - a * x - b or a'
maraboupy/MarabouPythonic.py:93
Method__sub__
Subtraction of a neuron's affine transformation with a constant or another affine transformation. e.g., a * x + b - b' or a * x + b -
maraboupy/MarabouPythonic.py:59
Method_test_incremental_linearization_sigmoid
src/cegar/tests/Test_IncrementalLinearization.h:66
Method_test_notify_bounds
src/engine/tests/Test_ReluConstraint.h:1059
FunctionactivateAllTests
tools/cxxtest/cxxtest/RealDescriptions.cpp:299
MethodactivateAllTests
tools/cxxtest/cxxtest/DummyDescriptions.cpp:30
MethodaddAbsConstraint
src/input_parsers/InputQueryBuilder.cpp:121
MethodaddAbsConstraint
src/proofs/SmtLibWriter.cpp:62
MethodaddActivationSource
src/nlr/NetworkLevelReasoner.cpp:103
MethodaddAuxiliaryEquation
src/input_parsers/BerkeleyParser.cpp:103
MethodaddAuxiliaryEquations
src/input_parsers/BerkeleyParser.cpp:96
MethodaddAuxiliaryEquationsAfterPreprocessing
Before solving: get additional auxiliary euqations (typically bound-dependent) that this constraint would like to add to the equation pool.
src/engine/PiecewiseLinearConstraint.h:259
MethodaddAuxiliaryEquationsAfterPreprocessing
src/engine/RoundConstraint.cpp:145
MethodaddAuxiliaryVariables
src/engine/Engine.cpp:1306
FunctionaddBilinearConstraint
maraboupy/MarabouCore.cpp:141
MethodaddBilinearConstraint
src/common/GurobiWrapper.h:305
FunctionaddClipConstraint
maraboupy/MarabouCore.cpp:114
MethodaddConstraint
src/common/GurobiWrapper.cpp:172
MethodaddDisjunctionConstraint
src/proofs/SmtLibWriter.cpp:133
MethodaddEmptyColumn
src/basis_factorization/SparseUnsortedArrays.cpp:218
MethodaddEmptyColumn
src/basis_factorization/SparseUnsortedLists.cpp:195
MethodaddEqConstraint
src/common/GurobiWrapper.h:290
MethodaddEqIndicatorConstraint
src/common/GurobiWrapper.h:302
MethodaddEqIndicatorConstraint
src/common/GurobiWrapper.cpp:237
MethodaddEquation
src/engine/PiecewiseLinearCaseSplit.cpp:32
MethodaddFooter
src/proofs/SmtLibWriter.cpp:27
MethodaddGeqConstraint
src/common/GurobiWrapper.h:287
MethodaddGeqIndicatorConstraint
src/common/GurobiWrapper.h:299
MethodaddGroundLowerBounds
src/proofs/SmtLibWriter.cpp:259
MethodaddGroundUpperBounds
src/proofs/SmtLibWriter.cpp:251
← previousnext →1,501–1,600 of 4,559, ranked by callers