├── .github └── workflows │ └── scala.yml ├── .gitignore ├── LICENSE ├── README.md ├── acsl-parser ├── Makefile ├── acsl-parser.jar └── acsl.cf ├── cc-parser ├── Makefile ├── cc-parser.jar ├── concurrentC.cf └── download_jars.mk ├── lib ├── LICENSE └── java-cup-11b-runtime.jar ├── project ├── assembly.sbt └── build.properties ├── regression-tests ├── ParametricEncoder │ ├── Answers │ └── runtests ├── acsl-contracts │ ├── Answers │ ├── contract1.hcc │ ├── contract10.hcc │ ├── contract11.hcc │ ├── contract12.hcc │ ├── contract13.hcc │ ├── contract14.hcc │ ├── contract15.hcc │ ├── contract16.hcc │ ├── contract17.hcc │ ├── contract18.hcc │ ├── contract19.hcc │ ├── contract2.hcc │ ├── contract20.hcc │ ├── contract21.hcc │ ├── contract22.hcc │ ├── contract23.hcc │ ├── contract24.hcc │ ├── contract25.hcc │ ├── contract26.hcc │ ├── contract27.hcc │ ├── contract3.hcc │ ├── contract4.hcc │ ├── contract5.hcc │ ├── contract6.hcc │ ├── contract7.hcc │ ├── contract8.hcc │ ├── contract9.hcc │ ├── runtests │ ├── struct-field-access-1-true.hcc │ ├── struct-field-access-2-false.hcc │ ├── struct-field-access-3-true.hcc │ └── struct-field-access-4-false.hcc ├── acsl-standalone │ ├── Answers │ ├── assigns_safe.c │ ├── assigns_unsafe.c │ ├── dblptr-assigns_safe.c │ ├── dblptr-assigns_unsafe.c │ ├── getptr_safe.c │ ├── getptr_safe.yml │ ├── getptr_unsafe.c │ ├── getptr_unsafe.yml │ ├── inc_safe.c │ ├── inc_unsafe.c │ ├── incdec_safe.c │ ├── incdec_unsafe.c │ ├── maxptr_safe.c │ ├── maxptr_unsafe.c │ ├── mc91_safe.c │ ├── mc91_unsafe.c │ ├── old_safe.c │ ├── old_unsafe.c │ ├── runtests │ ├── swap_safe.c │ └── swap_unsafe.c ├── at-expressions │ ├── Answers │ ├── at-old-01-false.c │ ├── at-old-01-true.c │ ├── runtests │ ├── simple-01-false.c │ └── simple-01-true.c ├── horn-bv │ ├── Answers │ ├── MonadicInv.hcc │ ├── bitwise1.hcc │ ├── bitwise2.hcc │ ├── bitwise3.hcc │ ├── convert.sh │ ├── nonlinear2.hcc │ └── runtests ├── horn-contract-parsing │ └── fib.hcc ├── horn-contracts │ ├── Answers │ ├── assert.hcc │ ├── contract1.hcc │ ├── contract2.hcc │ ├── contract2b.hcc │ ├── contract3.hcc │ ├── fib.hcc │ ├── runtests │ ├── stackptr-custom-entry.hcc │ ├── stackptr-multi-arg.hcc │ ├── stackptr-nested-calls.hcc │ ├── stackptr-recursion.hcc │ ├── stackptr-retvalue.hcc │ ├── stackptr-struct.hcc │ ├── stackptr.hcc │ ├── struct-name-bug.hcc │ └── takeuchi.hcc ├── horn-hcc-2 │ ├── Answers │ ├── atomic3e.hcc │ ├── atomic3f.hcc │ ├── channels-2.hcc │ ├── channels-2b.hcc │ ├── channels-3.hcc │ ├── channels.hcc │ ├── clocks1.hcc │ ├── clocks2.hcc │ ├── clocks3.hcc │ ├── clocks4.hcc │ ├── clocks5.hcc │ ├── duration1.hcc │ ├── duration2.hcc │ ├── duration3.hcc │ ├── duration3b.hcc │ ├── duration3c.hcc │ ├── duration3d.hcc │ ├── fischer-AB.hcc │ ├── fischer.hcc │ ├── hints.hcc │ ├── hints2.hcc │ ├── hints3.hcc │ ├── hints4.hcc │ ├── interval-propagator-bug.hcc │ ├── lazy-and-or-bug.hcc │ ├── nonlinear1.hcc │ ├── nonlinear2.hcc │ ├── runtests │ ├── switch1.hcc │ ├── switch2.hcc │ ├── trains.hcc │ └── typedef1.hcc ├── horn-hcc-array │ ├── Answers │ ├── array-inside-struct-1.c │ ├── array-of-ptr-1.c │ ├── array-single-alloc.c │ ├── dynamic-loop1.c │ ├── dynamic-loop1.yml │ ├── global-struct-array-1.c │ ├── nondet-global-array-explicit-1.c │ ├── nondet-global-array-explicit-2.c │ ├── nondet-global-array-explicit-3.c │ ├── nondet-global-array-opt-1.c │ ├── nondet-global-array-opt-2.c │ ├── nondet-global-array-opt-3.c │ ├── nondet-static-array-explicit-1.c │ ├── nondet-static-array-explicit-2.c │ ├── nondet-static-array-explicit-3.c │ ├── nondet-static-array-opt-1.c │ ├── nondet-static-array-opt-2.c │ ├── nondet-static-array-opt-3.c │ ├── out-of-bounds-line1.c │ ├── out-of-bounds-line1.yml │ ├── out-of-bounds-line2.c │ ├── out-of-bounds-line2.yml │ ├── out-of-bounds-line3.c │ ├── out-of-bounds-line3.yml │ ├── out-of-bounds-line4.c │ ├── out-of-bounds-line4.yml │ ├── out-of-bounds-loop.c │ ├── out-of-bounds-loop.yml │ ├── pointer-arith-1-safe.c │ ├── pointer-arith-1-safe.yml │ ├── pointer-arith-1-unsafe.c │ ├── pointer-arith-1-unsafe.yml │ ├── pointer-arith-2-safe.c │ ├── pointer-arith-2-safe.yml │ ├── pointer-arith-2-unsafe.c │ ├── pointer-arith-2-unsafe.yml │ ├── pointer-arith-3-safe.c │ ├── pointer-arith-3-safe.yml │ ├── pointer-arith-3-unsafe.c │ ├── pointer-arith-3-unsafe.yml │ ├── runtests │ ├── simple-alloca-memsafety1.c │ ├── simple-alloca-memsafety1.yml │ ├── simple-alloca-memsafety2.c │ ├── simple-alloca-memsafety2.yml │ ├── simple-dynamic-array.c │ ├── simple-dynamic-array.yml │ ├── simple-global-array.c │ ├── simple-global-memsafety1.c │ ├── simple-global-memsafety1.yml │ ├── simple-stack-memsafety1.c │ └── simple-stack-memsafety1.yml ├── horn-hcc-enum │ ├── Answers │ ├── enum-typedef-X.hcc │ ├── enum-typedef-pointer.hcc │ ├── enum-typedef-pointer2.hcc │ ├── enum-typedef-pointer2.hcc~ │ ├── enum-typedef.hcc │ ├── enum-typedef2.hcc │ ├── enum1-trailing-comma.hcc │ ├── enum1.hcc │ ├── enum2.hcc │ ├── enum3.hcc │ ├── enum4.hcc │ ├── enum5.hcc │ └── runtests ├── horn-hcc-heap │ ├── Answers │ ├── free-1-unsafe.c │ ├── free-1-unsafe.yml │ ├── free-2-nondet-unsafe.c │ ├── free-2-nondet-unsafe.yml │ ├── free-3-safe.c │ ├── free-3-safe.yml │ ├── free-4-unsafe.c │ ├── free-4-unsafe.yml │ ├── free-5-unsafe.c │ ├── heap-guard-bug-1.c │ ├── heap-guard-bug-2.c │ ├── illegal-access-001.c │ ├── illegal-access-002.c │ ├── list-001-fail.c │ ├── list-001.c │ ├── list-002-fail.c │ ├── list-002.c │ ├── mutually-referential-structs-fail.c │ ├── mutually-referential-structs-unsafe.c │ ├── mutually-referential-structs.c │ ├── opassign-struct.c │ ├── opassign.c │ ├── postop-struct.c │ ├── postop.c │ ├── preop-struct.c │ ├── preop.c │ ├── runtests │ ├── simple-arith.c │ ├── simple-struct-2.c │ ├── simple-struct-fail.c │ ├── simple-struct.c │ ├── sizeof-bug-1-true.c │ ├── sizeof-bug-2-true.c │ ├── stack-array-1-unsafe.c │ ├── stack-array-2-safe.c │ ├── stack-array-2-unsafe.c │ ├── stack-ptr-bug-1.c │ ├── stackptr-to-heapptr-double.c │ ├── stackptr-to-heapptr.c │ ├── struct-chained-ptr-field-1-safe.c │ ├── struct-chained-ptr-field-1-unsafe.c │ ├── struct-ptrfield-1.c │ ├── struct-ptrfield-1.yml │ ├── swap-1-fail.c │ ├── swap-1.c │ ├── swap-2-fail.c │ ├── swap-2.c │ ├── swap-3.c │ ├── typecastSafe-001.c │ ├── typecastSafe-001.yml │ ├── typecastUnsafe-001.c │ ├── typecastUnsafe-001.yml │ ├── unsafe-access-001.c │ └── unsafe-access-001.yml ├── horn-hcc-pointer │ ├── Answers │ ├── basic.hcc │ ├── cast-stack-heap-01.c │ ├── fields-nested.hcc │ ├── fields.hcc │ ├── list-init.hcc │ ├── ptr-to-int-cast.c │ ├── ptrptr-bug-1.c │ ├── ptrptr-bug-2.c │ ├── runtests │ ├── stack-ptr-fun-ret.c │ ├── struct-pointer.hcc │ ├── struct-pointer2.hcc │ ├── unary-struct-nested.hcc │ ├── unary-struct.hcc │ └── unary.hcc ├── horn-hcc-struct │ ├── Answers │ ├── anon.hcc │ ├── assign-exp-eval-order.hcc │ ├── assign-exp.hcc │ ├── assign-illegal.hcc │ ├── assign.hcc │ ├── assign2.hcc │ ├── emptyStruct.hcc │ ├── init.hcc │ ├── loop.hcc │ ├── nested.hcc │ ├── race.hcc │ ├── runtests │ └── typedef.hcc ├── horn-hcc │ ├── Answers │ ├── abort-1.c │ ├── abort-2.c │ ├── assert-ite-1.c │ ├── assert-ite-2.c │ ├── atomic1.hcc │ ├── atomic2.hcc │ ├── atomic3.hcc │ ├── atomic3b.hcc │ ├── atomic3c.hcc │ ├── atomic3d.hcc │ ├── atomic4.hcc │ ├── diamond_true-unreach-call1.c │ ├── disconnected-assertions.hcc │ ├── down_true-unreach-call.i.c │ ├── extended-decl.hcc │ ├── function-in-assume-assert-1-false.c │ ├── function-in-assume-assert-1-true.c │ ├── function-in-assume-assert-2-false.c │ ├── function-in-assume-assert-2-true.c │ ├── function-in-assume-assert-3-false.c │ ├── function-in-assume-assert-3-true.c │ ├── functions.hcc │ ├── functions2.hcc │ ├── inits.hcc │ ├── inits2-opt.hcc │ ├── inits2.hcc │ ├── inits3.hcc │ ├── inits4-explicit.hcc │ ├── inits4-opt.hcc │ ├── inits4.hcc │ ├── jumps.hcc │ ├── jumps2.hcc │ ├── jumps3.hcc │ ├── lazy-eval1.hcc │ ├── literals.c │ ├── locking.hcc │ ├── loop1.hcc │ ├── loop2.hcc │ ├── predicates.hcc │ ├── predicates2.hcc │ ├── preprocess-1.c │ ├── preprocess-2-assert.c │ ├── preprocess-3-assert.c │ ├── runtests │ ├── shadowing-global.hcc │ ├── shadowing.hcc │ ├── static-global.c │ ├── static-local-retention-false.c │ ├── static-local-retention-true.c │ ├── static-shadowing-true.c │ ├── ternary-bug.c │ ├── test-para1.hcc │ ├── test-para2.hcc │ ├── test1.hcc │ ├── test2.hcc │ ├── test2b.hcc │ ├── test2c.hcc │ ├── test3.hcc │ ├── test4.hcc │ ├── test5.hcc │ ├── test6.hcc │ ├── test7.hcc │ └── unsigned1.hcc ├── interpreted-predicates │ ├── Answers │ ├── runtests │ ├── simple-invariant-false.c │ ├── simple-invariant-true.c │ ├── simple-loop-invariant-false.c │ └── simple-loop-invariant-true.c ├── loop-invariants │ ├── Answers │ ├── loop-in-func.c │ ├── runtests │ ├── simple-loop-annotate.c │ ├── simple-loop-contract.c │ └── simple-loop.c ├── math-arrays │ ├── Answers │ ├── runtests │ ├── simple-math-array-1.hcc │ └── struct-array.hcc ├── properties │ ├── Answers │ ├── runtests │ ├── todo │ │ ├── README.md │ │ ├── valid-deref-stack-1-false.c │ │ ├── valid-deref-stack-1-false.yml │ │ ├── valid-deref-stack-1-true.c │ │ ├── valid-deref-stack-1-true.yml │ │ ├── valid-deref-type-1-false.c │ │ ├── valid-deref-type-1-false.yml │ │ ├── valid-deref-type-2-false.c │ │ ├── valid-deref-type-2-false.yml │ │ ├── valid-deref-type-2-true.c │ │ └── valid-deref-type-2-true.yml │ ├── valid-deref-arraybounds-1-false.c │ ├── valid-deref-arraybounds-1-false.yml │ ├── valid-deref-arraybounds-2-false.c │ ├── valid-deref-arraybounds-2-false.yml │ ├── valid-deref-arraybounds-3-false.c │ ├── valid-deref-arraybounds-3-false.yml │ ├── valid-deref-arraybounds-3-true.c │ ├── valid-deref-arraybounds-3-true.yml │ ├── valid-deref-arraybounds-4-false.c │ ├── valid-deref-arraybounds-4-false.yml │ ├── valid-deref-nullptr-false.c │ ├── valid-deref-nullptr-false.yml │ ├── valid-deref-uninit-false.c │ ├── valid-deref-uninit-false.yml │ ├── valid-free-1-true.c │ ├── valid-free-1-true.yml │ ├── valid-free-10-true.c │ ├── valid-free-10-true.yml │ ├── valid-free-11-true.c │ ├── valid-free-11-true.yml │ ├── valid-free-12-false.c │ ├── valid-free-12-false.yml │ ├── valid-free-2-false.c │ ├── valid-free-2-false.yml │ ├── valid-free-3-true.c │ ├── valid-free-3-true.yml │ ├── valid-free-4-false.c │ ├── valid-free-4-false.yml │ ├── valid-free-5-false.c │ ├── valid-free-5-false.yml │ ├── valid-free-6-true.c │ ├── valid-free-6-true.yml │ ├── valid-free-7-false.c │ ├── valid-free-7-false.yml │ ├── valid-free-8-false.c │ ├── valid-free-8-false.yml │ ├── valid-free-9-false.c │ ├── valid-free-9-false.yml │ ├── valid-memcleanup-1-false.c │ ├── valid-memcleanup-1-false.yml │ ├── valid-memcleanup-1-true.c │ ├── valid-memcleanup-1-true.yml │ ├── valid-memcleanup-2-false.c │ ├── valid-memcleanup-2-false.yml │ ├── valid-memcleanup-3-false.c │ ├── valid-memcleanup-3-false.yml │ ├── valid-memcleanup-3-true.c │ ├── valid-memcleanup-3-true.yml │ ├── valid-memcleanup-4-false.c │ ├── valid-memcleanup-4-false.yml │ ├── valid-memcleanup-array-false.c │ ├── valid-memcleanup-array-false.yml │ ├── valid-memcleanup-array-true.c │ ├── valid-memcleanup-array-true.yml │ ├── valid-memtrack-array-true.c │ └── valid-memtrack-array-true.yml ├── quantifiers │ ├── Answers │ ├── ext-univ-1-safe.hcc │ ├── ext-univ-1-unsafe.hcc │ ├── ext-univ-2-safe.hcc │ ├── ext-univ-3-nonzero-lo-safe.hcc │ ├── ext-univ-4-empty-safe.hcc │ ├── ext-univ-5-cmpN-safe.hcc │ └── runtests ├── runalldirs ├── rundir ├── toh-contract-translation │ ├── Answers │ ├── get-1.c │ ├── get-2.c │ ├── heapptr-to-stackptr.c │ ├── incdec-1.c │ ├── incdec-2.c │ ├── incdec-3.c │ ├── max-1.c │ ├── max-2.c │ ├── multadd-1.c │ ├── multadd-2.c │ ├── multadd-3.c │ ├── multi-arg-1.c │ ├── multi-arg-2.c │ ├── qualified-heapptr-to-stackptr.c │ ├── runtests │ ├── struct-1.c │ ├── truck-1.c │ └── truck-2.c └── uninterpreted-predicates │ ├── Answers │ ├── pred-hint-loop.c │ ├── pred-hint.c │ ├── runtests │ ├── unint-pred-simple-false.c │ ├── unint-pred-simple-ptr-true.c │ ├── unint-pred-simple-true.c │ ├── unint-pred-stack-ptr-unsupported.c │ └── unint-pred-unnamed-ptr-arg-bug.c ├── src ├── main │ └── scala │ │ └── tricera │ │ ├── CPreprocessor.scala │ │ ├── HeapInfo.scala │ │ ├── Literals.scala │ │ ├── Main.scala │ │ ├── ParallelComputation.scala │ │ ├── Result.scala │ │ ├── Util.scala │ │ ├── acsl │ │ ├── ACSLTranslator.scala │ │ ├── Encoder.scala │ │ └── FunctionContract.scala │ │ ├── benchmarking │ │ └── Benchmarking.scala │ │ ├── concurrency │ │ ├── CCAstAtExpressionTransformer.scala │ │ ├── CCAstCopyWithLocation.scala │ │ ├── CCAstMaxLineNumber.scala │ │ ├── CCAstStackPtrArgToGlobalTransformer.scala │ │ ├── CCAstTools.scala │ │ ├── CCAstTypeAnnotator.scala │ │ ├── CCAstUpdateLineNumber.scala │ │ ├── CCReader.scala │ │ ├── ParameterisedExamples.scala │ │ ├── ParseUtil.scala │ │ ├── ReaderMain.scala │ │ ├── Symex.scala │ │ ├── SymexContext.scala │ │ ├── TriCeraPreprocessor.scala │ │ ├── ccreader │ │ │ ├── CCBinaryExpressions.scala │ │ │ ├── CCDeclaration.scala │ │ │ ├── CCExceptions.scala │ │ │ ├── CCPredicate.scala │ │ │ ├── CCScope.scala │ │ │ ├── CCTerm.scala │ │ │ ├── CCType.scala │ │ │ └── CCVar.scala │ │ └── heap │ │ │ ├── HeapModel.scala │ │ │ └── HeapTheoryModel.scala │ │ ├── params │ │ └── TriCeraParameters.scala │ │ ├── parsers │ │ ├── AnnotationParser.scala │ │ ├── CommentPreprocessor.scala │ │ ├── ParserUtil.scala │ │ └── YAMLParser.scala │ │ ├── postprocessor │ │ ├── ACSLExpressionProcessor.scala │ │ ├── ACSLFunctions.scala │ │ ├── ACSLLineariser.scala │ │ ├── ADTExploder.scala │ │ ├── ADTSimplifier.scala │ │ ├── AssignmentProcessor.scala │ │ ├── ClauseRemover.scala │ │ ├── ContractConditionTools.scala │ │ ├── ContractConditionType.scala │ │ ├── ContractProcessorUtils.scala │ │ ├── EqualitySwapper.scala │ │ ├── FormulaSimplifier.scala │ │ ├── FunctionInvariantsFilter.scala │ │ ├── HeapRepresentation.scala │ │ ├── MergeTransformedFunctionsContracts.scala │ │ ├── PointerPropProcessor.scala │ │ ├── PointerTools.scala │ │ ├── PostconditionSimplifier.scala │ │ ├── ResultConverter.scala │ │ ├── ResultPrinters.scala │ │ ├── ResultProcessor.scala │ │ ├── SafePointerExtractor.scala │ │ ├── SolutionProcessor.scala │ │ ├── TheoryOfHeapProcessor.scala │ │ └── ValSet.scala │ │ ├── properties │ │ └── package.scala │ │ └── symex │ │ └── PathConstraints.scala └── test │ └── tricera │ └── concurrency │ ├── ADTSimplifierTests.scala │ ├── CCReaderCollectVarDecls.scala │ └── Util.scala ├── tri ├── tri-client └── triEnv /.github/workflows/scala.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/.github/workflows/scala.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/README.md -------------------------------------------------------------------------------- /acsl-parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/acsl-parser/Makefile -------------------------------------------------------------------------------- /acsl-parser/acsl-parser.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/acsl-parser/acsl-parser.jar -------------------------------------------------------------------------------- /acsl-parser/acsl.cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/acsl-parser/acsl.cf -------------------------------------------------------------------------------- /cc-parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/cc-parser/Makefile -------------------------------------------------------------------------------- /cc-parser/cc-parser.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/cc-parser/cc-parser.jar -------------------------------------------------------------------------------- /cc-parser/concurrentC.cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/cc-parser/concurrentC.cf -------------------------------------------------------------------------------- /cc-parser/download_jars.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/cc-parser/download_jars.mk -------------------------------------------------------------------------------- /lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/lib/LICENSE -------------------------------------------------------------------------------- /lib/java-cup-11b-runtime.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/lib/java-cup-11b-runtime.jar -------------------------------------------------------------------------------- /project/assembly.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/project/assembly.sbt -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.4.0 2 | -------------------------------------------------------------------------------- /regression-tests/ParametricEncoder/Answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/ParametricEncoder/Answers -------------------------------------------------------------------------------- /regression-tests/ParametricEncoder/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/ParametricEncoder/runtests -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/Answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/Answers -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract1.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract1.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract10.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract10.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract11.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract11.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract12.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract12.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract13.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract13.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract14.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract14.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract15.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract15.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract16.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract16.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract17.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract17.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract18.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract18.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract19.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract19.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract2.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract2.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract20.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract20.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract21.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract21.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract22.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract22.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract23.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract23.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract24.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract24.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract25.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract25.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract26.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract26.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract27.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract27.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract3.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract3.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract4.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract4.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract5.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract5.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract6.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract6.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract7.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract7.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract8.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract8.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/contract9.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/contract9.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/runtests -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/struct-field-access-1-true.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/struct-field-access-1-true.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/struct-field-access-2-false.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/struct-field-access-2-false.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/struct-field-access-3-true.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/struct-field-access-3-true.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-contracts/struct-field-access-4-false.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-contracts/struct-field-access-4-false.hcc -------------------------------------------------------------------------------- /regression-tests/acsl-standalone/Answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-standalone/Answers -------------------------------------------------------------------------------- /regression-tests/acsl-standalone/assigns_safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-standalone/assigns_safe.c -------------------------------------------------------------------------------- /regression-tests/acsl-standalone/assigns_unsafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-standalone/assigns_unsafe.c -------------------------------------------------------------------------------- /regression-tests/acsl-standalone/dblptr-assigns_safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-standalone/dblptr-assigns_safe.c -------------------------------------------------------------------------------- /regression-tests/acsl-standalone/dblptr-assigns_unsafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-standalone/dblptr-assigns_unsafe.c -------------------------------------------------------------------------------- /regression-tests/acsl-standalone/getptr_safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-standalone/getptr_safe.c -------------------------------------------------------------------------------- /regression-tests/acsl-standalone/getptr_safe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-standalone/getptr_safe.yml -------------------------------------------------------------------------------- /regression-tests/acsl-standalone/getptr_unsafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-standalone/getptr_unsafe.c -------------------------------------------------------------------------------- /regression-tests/acsl-standalone/getptr_unsafe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-standalone/getptr_unsafe.yml -------------------------------------------------------------------------------- /regression-tests/acsl-standalone/inc_safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-standalone/inc_safe.c -------------------------------------------------------------------------------- /regression-tests/acsl-standalone/inc_unsafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-standalone/inc_unsafe.c -------------------------------------------------------------------------------- /regression-tests/acsl-standalone/incdec_safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-standalone/incdec_safe.c -------------------------------------------------------------------------------- /regression-tests/acsl-standalone/incdec_unsafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-standalone/incdec_unsafe.c -------------------------------------------------------------------------------- /regression-tests/acsl-standalone/maxptr_safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-standalone/maxptr_safe.c -------------------------------------------------------------------------------- /regression-tests/acsl-standalone/maxptr_unsafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-standalone/maxptr_unsafe.c -------------------------------------------------------------------------------- /regression-tests/acsl-standalone/mc91_safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-standalone/mc91_safe.c -------------------------------------------------------------------------------- /regression-tests/acsl-standalone/mc91_unsafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-standalone/mc91_unsafe.c -------------------------------------------------------------------------------- /regression-tests/acsl-standalone/old_safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-standalone/old_safe.c -------------------------------------------------------------------------------- /regression-tests/acsl-standalone/old_unsafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-standalone/old_unsafe.c -------------------------------------------------------------------------------- /regression-tests/acsl-standalone/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-standalone/runtests -------------------------------------------------------------------------------- /regression-tests/acsl-standalone/swap_safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-standalone/swap_safe.c -------------------------------------------------------------------------------- /regression-tests/acsl-standalone/swap_unsafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/acsl-standalone/swap_unsafe.c -------------------------------------------------------------------------------- /regression-tests/at-expressions/Answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/at-expressions/Answers -------------------------------------------------------------------------------- /regression-tests/at-expressions/at-old-01-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/at-expressions/at-old-01-false.c -------------------------------------------------------------------------------- /regression-tests/at-expressions/at-old-01-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/at-expressions/at-old-01-true.c -------------------------------------------------------------------------------- /regression-tests/at-expressions/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/at-expressions/runtests -------------------------------------------------------------------------------- /regression-tests/at-expressions/simple-01-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/at-expressions/simple-01-false.c -------------------------------------------------------------------------------- /regression-tests/at-expressions/simple-01-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/at-expressions/simple-01-true.c -------------------------------------------------------------------------------- /regression-tests/horn-bv/Answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-bv/Answers -------------------------------------------------------------------------------- /regression-tests/horn-bv/MonadicInv.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-bv/MonadicInv.hcc -------------------------------------------------------------------------------- /regression-tests/horn-bv/bitwise1.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-bv/bitwise1.hcc -------------------------------------------------------------------------------- /regression-tests/horn-bv/bitwise2.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-bv/bitwise2.hcc -------------------------------------------------------------------------------- /regression-tests/horn-bv/bitwise3.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-bv/bitwise3.hcc -------------------------------------------------------------------------------- /regression-tests/horn-bv/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-bv/convert.sh -------------------------------------------------------------------------------- /regression-tests/horn-bv/nonlinear2.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-bv/nonlinear2.hcc -------------------------------------------------------------------------------- /regression-tests/horn-bv/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-bv/runtests -------------------------------------------------------------------------------- /regression-tests/horn-contract-parsing/fib.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-contract-parsing/fib.hcc -------------------------------------------------------------------------------- /regression-tests/horn-contracts/Answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-contracts/Answers -------------------------------------------------------------------------------- /regression-tests/horn-contracts/assert.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-contracts/assert.hcc -------------------------------------------------------------------------------- /regression-tests/horn-contracts/contract1.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-contracts/contract1.hcc -------------------------------------------------------------------------------- /regression-tests/horn-contracts/contract2.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-contracts/contract2.hcc -------------------------------------------------------------------------------- /regression-tests/horn-contracts/contract2b.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-contracts/contract2b.hcc -------------------------------------------------------------------------------- /regression-tests/horn-contracts/contract3.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-contracts/contract3.hcc -------------------------------------------------------------------------------- /regression-tests/horn-contracts/fib.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-contracts/fib.hcc -------------------------------------------------------------------------------- /regression-tests/horn-contracts/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-contracts/runtests -------------------------------------------------------------------------------- /regression-tests/horn-contracts/stackptr-custom-entry.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-contracts/stackptr-custom-entry.hcc -------------------------------------------------------------------------------- /regression-tests/horn-contracts/stackptr-multi-arg.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-contracts/stackptr-multi-arg.hcc -------------------------------------------------------------------------------- /regression-tests/horn-contracts/stackptr-nested-calls.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-contracts/stackptr-nested-calls.hcc -------------------------------------------------------------------------------- /regression-tests/horn-contracts/stackptr-recursion.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-contracts/stackptr-recursion.hcc -------------------------------------------------------------------------------- /regression-tests/horn-contracts/stackptr-retvalue.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-contracts/stackptr-retvalue.hcc -------------------------------------------------------------------------------- /regression-tests/horn-contracts/stackptr-struct.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-contracts/stackptr-struct.hcc -------------------------------------------------------------------------------- /regression-tests/horn-contracts/stackptr.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-contracts/stackptr.hcc -------------------------------------------------------------------------------- /regression-tests/horn-contracts/struct-name-bug.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-contracts/struct-name-bug.hcc -------------------------------------------------------------------------------- /regression-tests/horn-contracts/takeuchi.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-contracts/takeuchi.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/Answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/Answers -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/atomic3e.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/atomic3e.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/atomic3f.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/atomic3f.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/channels-2.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/channels-2.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/channels-2b.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/channels-2b.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/channels-3.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/channels-3.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/channels.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/channels.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/clocks1.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/clocks1.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/clocks2.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/clocks2.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/clocks3.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/clocks3.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/clocks4.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/clocks4.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/clocks5.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/clocks5.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/duration1.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/duration1.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/duration2.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/duration2.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/duration3.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/duration3.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/duration3b.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/duration3b.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/duration3c.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/duration3c.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/duration3d.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/duration3d.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/fischer-AB.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/fischer-AB.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/fischer.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/fischer.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/hints.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/hints.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/hints2.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/hints2.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/hints3.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/hints3.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/hints4.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/hints4.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/interval-propagator-bug.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/interval-propagator-bug.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/lazy-and-or-bug.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/lazy-and-or-bug.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/nonlinear1.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/nonlinear1.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/nonlinear2.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/nonlinear2.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/runtests -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/switch1.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/switch1.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/switch2.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/switch2.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/trains.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/trains.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-2/typedef1.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-2/typedef1.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/Answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/Answers -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/array-inside-struct-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/array-inside-struct-1.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/array-of-ptr-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/array-of-ptr-1.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/array-single-alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/array-single-alloc.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/dynamic-loop1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/dynamic-loop1.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/dynamic-loop1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/dynamic-loop1.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/global-struct-array-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/global-struct-array-1.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/nondet-global-array-explicit-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/nondet-global-array-explicit-1.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/nondet-global-array-explicit-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/nondet-global-array-explicit-2.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/nondet-global-array-explicit-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/nondet-global-array-explicit-3.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/nondet-global-array-opt-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/nondet-global-array-opt-1.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/nondet-global-array-opt-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/nondet-global-array-opt-2.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/nondet-global-array-opt-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/nondet-global-array-opt-3.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/nondet-static-array-explicit-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/nondet-static-array-explicit-1.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/nondet-static-array-explicit-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/nondet-static-array-explicit-2.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/nondet-static-array-explicit-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/nondet-static-array-explicit-3.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/nondet-static-array-opt-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/nondet-static-array-opt-1.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/nondet-static-array-opt-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/nondet-static-array-opt-2.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/nondet-static-array-opt-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/nondet-static-array-opt-3.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/out-of-bounds-line1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/out-of-bounds-line1.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/out-of-bounds-line1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/out-of-bounds-line1.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/out-of-bounds-line2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/out-of-bounds-line2.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/out-of-bounds-line2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/out-of-bounds-line2.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/out-of-bounds-line3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/out-of-bounds-line3.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/out-of-bounds-line3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/out-of-bounds-line3.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/out-of-bounds-line4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/out-of-bounds-line4.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/out-of-bounds-line4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/out-of-bounds-line4.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/out-of-bounds-loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/out-of-bounds-loop.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/out-of-bounds-loop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/out-of-bounds-loop.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/pointer-arith-1-safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/pointer-arith-1-safe.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/pointer-arith-1-safe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/pointer-arith-1-safe.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/pointer-arith-1-unsafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/pointer-arith-1-unsafe.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/pointer-arith-1-unsafe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/pointer-arith-1-unsafe.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/pointer-arith-2-safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/pointer-arith-2-safe.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/pointer-arith-2-safe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/pointer-arith-2-safe.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/pointer-arith-2-unsafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/pointer-arith-2-unsafe.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/pointer-arith-2-unsafe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/pointer-arith-2-unsafe.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/pointer-arith-3-safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/pointer-arith-3-safe.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/pointer-arith-3-safe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/pointer-arith-3-safe.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/pointer-arith-3-unsafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/pointer-arith-3-unsafe.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/pointer-arith-3-unsafe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/pointer-arith-3-unsafe.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/runtests -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/simple-alloca-memsafety1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/simple-alloca-memsafety1.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/simple-alloca-memsafety1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/simple-alloca-memsafety1.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/simple-alloca-memsafety2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/simple-alloca-memsafety2.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/simple-alloca-memsafety2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/simple-alloca-memsafety2.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/simple-dynamic-array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/simple-dynamic-array.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/simple-dynamic-array.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/simple-dynamic-array.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/simple-global-array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/simple-global-array.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/simple-global-memsafety1.c: -------------------------------------------------------------------------------- 1 | int a[42]; 2 | 3 | void main() { 4 | assert(a[0] == 0); 5 | } 6 | -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/simple-global-memsafety1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/simple-global-memsafety1.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/simple-stack-memsafety1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/simple-stack-memsafety1.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-array/simple-stack-memsafety1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-array/simple-stack-memsafety1.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-enum/Answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-enum/Answers -------------------------------------------------------------------------------- /regression-tests/horn-hcc-enum/enum-typedef-X.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-enum/enum-typedef-X.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-enum/enum-typedef-pointer.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-enum/enum-typedef-pointer.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-enum/enum-typedef-pointer2.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-enum/enum-typedef-pointer2.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-enum/enum-typedef-pointer2.hcc~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-enum/enum-typedef-pointer2.hcc~ -------------------------------------------------------------------------------- /regression-tests/horn-hcc-enum/enum-typedef.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-enum/enum-typedef.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-enum/enum-typedef2.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-enum/enum-typedef2.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-enum/enum1-trailing-comma.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-enum/enum1-trailing-comma.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-enum/enum1.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-enum/enum1.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-enum/enum2.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-enum/enum2.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-enum/enum3.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-enum/enum3.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-enum/enum4.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-enum/enum4.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-enum/enum5.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-enum/enum5.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-enum/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-enum/runtests -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/Answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/Answers -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/free-1-unsafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/free-1-unsafe.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/free-1-unsafe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/free-1-unsafe.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/free-2-nondet-unsafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/free-2-nondet-unsafe.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/free-2-nondet-unsafe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/free-2-nondet-unsafe.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/free-3-safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/free-3-safe.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/free-3-safe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/free-3-safe.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/free-4-unsafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/free-4-unsafe.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/free-4-unsafe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/free-4-unsafe.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/free-5-unsafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/free-5-unsafe.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/heap-guard-bug-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/heap-guard-bug-1.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/heap-guard-bug-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/heap-guard-bug-2.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/illegal-access-001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/illegal-access-001.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/illegal-access-002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/illegal-access-002.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/list-001-fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/list-001-fail.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/list-001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/list-001.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/list-002-fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/list-002-fail.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/list-002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/list-002.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/mutually-referential-structs-fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/mutually-referential-structs-fail.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/mutually-referential-structs-unsafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/mutually-referential-structs-unsafe.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/mutually-referential-structs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/mutually-referential-structs.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/opassign-struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/opassign-struct.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/opassign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/opassign.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/postop-struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/postop-struct.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/postop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/postop.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/preop-struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/preop-struct.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/preop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/preop.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/runtests -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/simple-arith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/simple-arith.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/simple-struct-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/simple-struct-2.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/simple-struct-fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/simple-struct-fail.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/simple-struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/simple-struct.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/sizeof-bug-1-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/sizeof-bug-1-true.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/sizeof-bug-2-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/sizeof-bug-2-true.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/stack-array-1-unsafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/stack-array-1-unsafe.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/stack-array-2-safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/stack-array-2-safe.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/stack-array-2-unsafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/stack-array-2-unsafe.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/stack-ptr-bug-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/stack-ptr-bug-1.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/stackptr-to-heapptr-double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/stackptr-to-heapptr-double.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/stackptr-to-heapptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/stackptr-to-heapptr.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/struct-chained-ptr-field-1-safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/struct-chained-ptr-field-1-safe.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/struct-chained-ptr-field-1-unsafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/struct-chained-ptr-field-1-unsafe.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/struct-ptrfield-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/struct-ptrfield-1.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/struct-ptrfield-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/struct-ptrfield-1.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/swap-1-fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/swap-1-fail.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/swap-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/swap-1.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/swap-2-fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/swap-2-fail.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/swap-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/swap-2.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/swap-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/swap-3.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/typecastSafe-001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/typecastSafe-001.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/typecastSafe-001.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/typecastSafe-001.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/typecastUnsafe-001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/typecastUnsafe-001.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/typecastUnsafe-001.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/typecastUnsafe-001.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/unsafe-access-001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/unsafe-access-001.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-heap/unsafe-access-001.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-heap/unsafe-access-001.yml -------------------------------------------------------------------------------- /regression-tests/horn-hcc-pointer/Answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-pointer/Answers -------------------------------------------------------------------------------- /regression-tests/horn-hcc-pointer/basic.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-pointer/basic.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-pointer/cast-stack-heap-01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-pointer/cast-stack-heap-01.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-pointer/fields-nested.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-pointer/fields-nested.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-pointer/fields.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-pointer/fields.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-pointer/list-init.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-pointer/list-init.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-pointer/ptr-to-int-cast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-pointer/ptr-to-int-cast.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-pointer/ptrptr-bug-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-pointer/ptrptr-bug-1.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-pointer/ptrptr-bug-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-pointer/ptrptr-bug-2.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-pointer/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-pointer/runtests -------------------------------------------------------------------------------- /regression-tests/horn-hcc-pointer/stack-ptr-fun-ret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-pointer/stack-ptr-fun-ret.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc-pointer/struct-pointer.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-pointer/struct-pointer.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-pointer/struct-pointer2.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-pointer/struct-pointer2.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-pointer/unary-struct-nested.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-pointer/unary-struct-nested.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-pointer/unary-struct.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-pointer/unary-struct.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-pointer/unary.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-pointer/unary.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-struct/Answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-struct/Answers -------------------------------------------------------------------------------- /regression-tests/horn-hcc-struct/anon.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-struct/anon.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-struct/assign-exp-eval-order.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-struct/assign-exp-eval-order.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-struct/assign-exp.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-struct/assign-exp.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-struct/assign-illegal.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-struct/assign-illegal.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-struct/assign.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-struct/assign.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-struct/assign2.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-struct/assign2.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-struct/emptyStruct.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-struct/emptyStruct.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-struct/init.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-struct/init.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-struct/loop.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-struct/loop.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-struct/nested.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-struct/nested.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-struct/race.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-struct/race.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc-struct/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-struct/runtests -------------------------------------------------------------------------------- /regression-tests/horn-hcc-struct/typedef.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc-struct/typedef.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/Answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/Answers -------------------------------------------------------------------------------- /regression-tests/horn-hcc/abort-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/abort-1.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc/abort-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/abort-2.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc/assert-ite-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/assert-ite-1.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc/assert-ite-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/assert-ite-2.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc/atomic1.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/atomic1.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/atomic2.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/atomic2.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/atomic3.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/atomic3.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/atomic3b.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/atomic3b.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/atomic3c.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/atomic3c.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/atomic3d.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/atomic3d.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/atomic4.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/atomic4.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/diamond_true-unreach-call1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/diamond_true-unreach-call1.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc/disconnected-assertions.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/disconnected-assertions.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/down_true-unreach-call.i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/down_true-unreach-call.i.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc/extended-decl.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/extended-decl.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/function-in-assume-assert-1-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/function-in-assume-assert-1-false.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc/function-in-assume-assert-1-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/function-in-assume-assert-1-true.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc/function-in-assume-assert-2-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/function-in-assume-assert-2-false.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc/function-in-assume-assert-2-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/function-in-assume-assert-2-true.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc/function-in-assume-assert-3-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/function-in-assume-assert-3-false.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc/function-in-assume-assert-3-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/function-in-assume-assert-3-true.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc/functions.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/functions.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/functions2.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/functions2.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/inits.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/inits.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/inits2-opt.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/inits2-opt.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/inits2.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/inits2.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/inits3.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/inits3.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/inits4-explicit.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/inits4-explicit.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/inits4-opt.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/inits4-opt.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/inits4.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/inits4.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/jumps.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/jumps.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/jumps2.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/jumps2.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/jumps3.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/jumps3.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/lazy-eval1.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/lazy-eval1.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/literals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/literals.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc/locking.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/locking.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/loop1.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/loop1.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/loop2.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/loop2.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/predicates.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/predicates.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/predicates2.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/predicates2.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/preprocess-1.c: -------------------------------------------------------------------------------- 1 | #define X 42 2 | 3 | void main() { 4 | assert(X == 42); 5 | } 6 | -------------------------------------------------------------------------------- /regression-tests/horn-hcc/preprocess-2-assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/preprocess-2-assert.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc/preprocess-3-assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/preprocess-3-assert.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/runtests -------------------------------------------------------------------------------- /regression-tests/horn-hcc/shadowing-global.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/shadowing-global.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/shadowing.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/shadowing.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/static-global.c: -------------------------------------------------------------------------------- 1 | static int x; 2 | 3 | void main() 4 | { 5 | assert(x == 0); 6 | } 7 | -------------------------------------------------------------------------------- /regression-tests/horn-hcc/static-local-retention-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/static-local-retention-false.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc/static-local-retention-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/static-local-retention-true.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc/static-shadowing-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/static-shadowing-true.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc/ternary-bug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/ternary-bug.c -------------------------------------------------------------------------------- /regression-tests/horn-hcc/test-para1.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/test-para1.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/test-para2.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/test-para2.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/test1.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/test1.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/test2.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/test2.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/test2b.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/test2b.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/test2c.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/test2c.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/test3.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/test3.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/test4.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/test4.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/test5.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/test5.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/test6.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/test6.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/test7.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/test7.hcc -------------------------------------------------------------------------------- /regression-tests/horn-hcc/unsigned1.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/horn-hcc/unsigned1.hcc -------------------------------------------------------------------------------- /regression-tests/interpreted-predicates/Answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/interpreted-predicates/Answers -------------------------------------------------------------------------------- /regression-tests/interpreted-predicates/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/interpreted-predicates/runtests -------------------------------------------------------------------------------- /regression-tests/interpreted-predicates/simple-invariant-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/interpreted-predicates/simple-invariant-false.c -------------------------------------------------------------------------------- /regression-tests/interpreted-predicates/simple-invariant-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/interpreted-predicates/simple-invariant-true.c -------------------------------------------------------------------------------- /regression-tests/interpreted-predicates/simple-loop-invariant-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/interpreted-predicates/simple-loop-invariant-false.c -------------------------------------------------------------------------------- /regression-tests/interpreted-predicates/simple-loop-invariant-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/interpreted-predicates/simple-loop-invariant-true.c -------------------------------------------------------------------------------- /regression-tests/loop-invariants/Answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/loop-invariants/Answers -------------------------------------------------------------------------------- /regression-tests/loop-invariants/loop-in-func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/loop-invariants/loop-in-func.c -------------------------------------------------------------------------------- /regression-tests/loop-invariants/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/loop-invariants/runtests -------------------------------------------------------------------------------- /regression-tests/loop-invariants/simple-loop-annotate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/loop-invariants/simple-loop-annotate.c -------------------------------------------------------------------------------- /regression-tests/loop-invariants/simple-loop-contract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/loop-invariants/simple-loop-contract.c -------------------------------------------------------------------------------- /regression-tests/loop-invariants/simple-loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/loop-invariants/simple-loop.c -------------------------------------------------------------------------------- /regression-tests/math-arrays/Answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/math-arrays/Answers -------------------------------------------------------------------------------- /regression-tests/math-arrays/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/math-arrays/runtests -------------------------------------------------------------------------------- /regression-tests/math-arrays/simple-math-array-1.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/math-arrays/simple-math-array-1.hcc -------------------------------------------------------------------------------- /regression-tests/math-arrays/struct-array.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/math-arrays/struct-array.hcc -------------------------------------------------------------------------------- /regression-tests/properties/Answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/Answers -------------------------------------------------------------------------------- /regression-tests/properties/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/runtests -------------------------------------------------------------------------------- /regression-tests/properties/todo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/todo/README.md -------------------------------------------------------------------------------- /regression-tests/properties/todo/valid-deref-stack-1-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/todo/valid-deref-stack-1-false.c -------------------------------------------------------------------------------- /regression-tests/properties/todo/valid-deref-stack-1-false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/todo/valid-deref-stack-1-false.yml -------------------------------------------------------------------------------- /regression-tests/properties/todo/valid-deref-stack-1-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/todo/valid-deref-stack-1-true.c -------------------------------------------------------------------------------- /regression-tests/properties/todo/valid-deref-stack-1-true.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/todo/valid-deref-stack-1-true.yml -------------------------------------------------------------------------------- /regression-tests/properties/todo/valid-deref-type-1-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/todo/valid-deref-type-1-false.c -------------------------------------------------------------------------------- /regression-tests/properties/todo/valid-deref-type-1-false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/todo/valid-deref-type-1-false.yml -------------------------------------------------------------------------------- /regression-tests/properties/todo/valid-deref-type-2-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/todo/valid-deref-type-2-false.c -------------------------------------------------------------------------------- /regression-tests/properties/todo/valid-deref-type-2-false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/todo/valid-deref-type-2-false.yml -------------------------------------------------------------------------------- /regression-tests/properties/todo/valid-deref-type-2-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/todo/valid-deref-type-2-true.c -------------------------------------------------------------------------------- /regression-tests/properties/todo/valid-deref-type-2-true.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/todo/valid-deref-type-2-true.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-deref-arraybounds-1-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-deref-arraybounds-1-false.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-deref-arraybounds-1-false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-deref-arraybounds-1-false.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-deref-arraybounds-2-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-deref-arraybounds-2-false.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-deref-arraybounds-2-false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-deref-arraybounds-2-false.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-deref-arraybounds-3-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-deref-arraybounds-3-false.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-deref-arraybounds-3-false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-deref-arraybounds-3-false.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-deref-arraybounds-3-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-deref-arraybounds-3-true.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-deref-arraybounds-3-true.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-deref-arraybounds-3-true.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-deref-arraybounds-4-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-deref-arraybounds-4-false.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-deref-arraybounds-4-false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-deref-arraybounds-4-false.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-deref-nullptr-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-deref-nullptr-false.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-deref-nullptr-false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-deref-nullptr-false.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-deref-uninit-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-deref-uninit-false.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-deref-uninit-false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-deref-uninit-false.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-free-1-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-free-1-true.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-free-1-true.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-free-1-true.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-free-10-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-free-10-true.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-free-10-true.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-free-10-true.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-free-11-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-free-11-true.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-free-11-true.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-free-11-true.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-free-12-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-free-12-false.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-free-12-false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-free-12-false.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-free-2-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-free-2-false.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-free-2-false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-free-2-false.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-free-3-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-free-3-true.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-free-3-true.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-free-3-true.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-free-4-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-free-4-false.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-free-4-false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-free-4-false.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-free-5-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-free-5-false.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-free-5-false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-free-5-false.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-free-6-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-free-6-true.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-free-6-true.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-free-6-true.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-free-7-false.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void main() { 4 | int x[42]; 5 | free(x); 6 | } 7 | -------------------------------------------------------------------------------- /regression-tests/properties/valid-free-7-false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-free-7-false.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-free-8-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-free-8-false.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-free-8-false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-free-8-false.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-free-9-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-free-9-false.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-free-9-false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-free-9-false.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-memcleanup-1-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-memcleanup-1-false.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-memcleanup-1-false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-memcleanup-1-false.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-memcleanup-1-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-memcleanup-1-true.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-memcleanup-1-true.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-memcleanup-1-true.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-memcleanup-2-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-memcleanup-2-false.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-memcleanup-2-false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-memcleanup-2-false.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-memcleanup-3-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-memcleanup-3-false.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-memcleanup-3-false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-memcleanup-3-false.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-memcleanup-3-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-memcleanup-3-true.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-memcleanup-3-true.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-memcleanup-3-true.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-memcleanup-4-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-memcleanup-4-false.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-memcleanup-4-false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-memcleanup-4-false.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-memcleanup-array-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-memcleanup-array-false.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-memcleanup-array-false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-memcleanup-array-false.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-memcleanup-array-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-memcleanup-array-true.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-memcleanup-array-true.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-memcleanup-array-true.yml -------------------------------------------------------------------------------- /regression-tests/properties/valid-memtrack-array-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-memtrack-array-true.c -------------------------------------------------------------------------------- /regression-tests/properties/valid-memtrack-array-true.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/properties/valid-memtrack-array-true.yml -------------------------------------------------------------------------------- /regression-tests/quantifiers/Answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/quantifiers/Answers -------------------------------------------------------------------------------- /regression-tests/quantifiers/ext-univ-1-safe.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/quantifiers/ext-univ-1-safe.hcc -------------------------------------------------------------------------------- /regression-tests/quantifiers/ext-univ-1-unsafe.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/quantifiers/ext-univ-1-unsafe.hcc -------------------------------------------------------------------------------- /regression-tests/quantifiers/ext-univ-2-safe.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/quantifiers/ext-univ-2-safe.hcc -------------------------------------------------------------------------------- /regression-tests/quantifiers/ext-univ-3-nonzero-lo-safe.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/quantifiers/ext-univ-3-nonzero-lo-safe.hcc -------------------------------------------------------------------------------- /regression-tests/quantifiers/ext-univ-4-empty-safe.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/quantifiers/ext-univ-4-empty-safe.hcc -------------------------------------------------------------------------------- /regression-tests/quantifiers/ext-univ-5-cmpN-safe.hcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/quantifiers/ext-univ-5-cmpN-safe.hcc -------------------------------------------------------------------------------- /regression-tests/quantifiers/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/quantifiers/runtests -------------------------------------------------------------------------------- /regression-tests/runalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/runalldirs -------------------------------------------------------------------------------- /regression-tests/rundir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/rundir -------------------------------------------------------------------------------- /regression-tests/toh-contract-translation/Answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/toh-contract-translation/Answers -------------------------------------------------------------------------------- /regression-tests/toh-contract-translation/get-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/toh-contract-translation/get-1.c -------------------------------------------------------------------------------- /regression-tests/toh-contract-translation/get-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/toh-contract-translation/get-2.c -------------------------------------------------------------------------------- /regression-tests/toh-contract-translation/heapptr-to-stackptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/toh-contract-translation/heapptr-to-stackptr.c -------------------------------------------------------------------------------- /regression-tests/toh-contract-translation/incdec-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/toh-contract-translation/incdec-1.c -------------------------------------------------------------------------------- /regression-tests/toh-contract-translation/incdec-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/toh-contract-translation/incdec-2.c -------------------------------------------------------------------------------- /regression-tests/toh-contract-translation/incdec-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/toh-contract-translation/incdec-3.c -------------------------------------------------------------------------------- /regression-tests/toh-contract-translation/max-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/toh-contract-translation/max-1.c -------------------------------------------------------------------------------- /regression-tests/toh-contract-translation/max-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/toh-contract-translation/max-2.c -------------------------------------------------------------------------------- /regression-tests/toh-contract-translation/multadd-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/toh-contract-translation/multadd-1.c -------------------------------------------------------------------------------- /regression-tests/toh-contract-translation/multadd-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/toh-contract-translation/multadd-2.c -------------------------------------------------------------------------------- /regression-tests/toh-contract-translation/multadd-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/toh-contract-translation/multadd-3.c -------------------------------------------------------------------------------- /regression-tests/toh-contract-translation/multi-arg-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/toh-contract-translation/multi-arg-1.c -------------------------------------------------------------------------------- /regression-tests/toh-contract-translation/multi-arg-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/toh-contract-translation/multi-arg-2.c -------------------------------------------------------------------------------- /regression-tests/toh-contract-translation/qualified-heapptr-to-stackptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/toh-contract-translation/qualified-heapptr-to-stackptr.c -------------------------------------------------------------------------------- /regression-tests/toh-contract-translation/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/toh-contract-translation/runtests -------------------------------------------------------------------------------- /regression-tests/toh-contract-translation/struct-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/toh-contract-translation/struct-1.c -------------------------------------------------------------------------------- /regression-tests/toh-contract-translation/truck-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/toh-contract-translation/truck-1.c -------------------------------------------------------------------------------- /regression-tests/toh-contract-translation/truck-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/toh-contract-translation/truck-2.c -------------------------------------------------------------------------------- /regression-tests/uninterpreted-predicates/Answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/uninterpreted-predicates/Answers -------------------------------------------------------------------------------- /regression-tests/uninterpreted-predicates/pred-hint-loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/uninterpreted-predicates/pred-hint-loop.c -------------------------------------------------------------------------------- /regression-tests/uninterpreted-predicates/pred-hint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/uninterpreted-predicates/pred-hint.c -------------------------------------------------------------------------------- /regression-tests/uninterpreted-predicates/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/uninterpreted-predicates/runtests -------------------------------------------------------------------------------- /regression-tests/uninterpreted-predicates/unint-pred-simple-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/uninterpreted-predicates/unint-pred-simple-false.c -------------------------------------------------------------------------------- /regression-tests/uninterpreted-predicates/unint-pred-simple-ptr-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/uninterpreted-predicates/unint-pred-simple-ptr-true.c -------------------------------------------------------------------------------- /regression-tests/uninterpreted-predicates/unint-pred-simple-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/uninterpreted-predicates/unint-pred-simple-true.c -------------------------------------------------------------------------------- /regression-tests/uninterpreted-predicates/unint-pred-stack-ptr-unsupported.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/uninterpreted-predicates/unint-pred-stack-ptr-unsupported.c -------------------------------------------------------------------------------- /regression-tests/uninterpreted-predicates/unint-pred-unnamed-ptr-arg-bug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/regression-tests/uninterpreted-predicates/unint-pred-unnamed-ptr-arg-bug.c -------------------------------------------------------------------------------- /src/main/scala/tricera/CPreprocessor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/CPreprocessor.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/HeapInfo.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/HeapInfo.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/Literals.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/Literals.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/Main.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/Main.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/ParallelComputation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/ParallelComputation.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/Result.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/Result.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/Util.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/Util.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/acsl/ACSLTranslator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/acsl/ACSLTranslator.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/acsl/Encoder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/acsl/Encoder.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/acsl/FunctionContract.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/acsl/FunctionContract.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/benchmarking/Benchmarking.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/benchmarking/Benchmarking.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/concurrency/CCAstAtExpressionTransformer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/concurrency/CCAstAtExpressionTransformer.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/concurrency/CCAstCopyWithLocation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/concurrency/CCAstCopyWithLocation.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/concurrency/CCAstMaxLineNumber.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/concurrency/CCAstMaxLineNumber.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/concurrency/CCAstStackPtrArgToGlobalTransformer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/concurrency/CCAstStackPtrArgToGlobalTransformer.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/concurrency/CCAstTools.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/concurrency/CCAstTools.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/concurrency/CCAstTypeAnnotator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/concurrency/CCAstTypeAnnotator.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/concurrency/CCAstUpdateLineNumber.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/concurrency/CCAstUpdateLineNumber.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/concurrency/CCReader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/concurrency/CCReader.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/concurrency/ParameterisedExamples.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/concurrency/ParameterisedExamples.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/concurrency/ParseUtil.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/concurrency/ParseUtil.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/concurrency/ReaderMain.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/concurrency/ReaderMain.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/concurrency/Symex.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/concurrency/Symex.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/concurrency/SymexContext.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/concurrency/SymexContext.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/concurrency/TriCeraPreprocessor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/concurrency/TriCeraPreprocessor.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/concurrency/ccreader/CCBinaryExpressions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/concurrency/ccreader/CCBinaryExpressions.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/concurrency/ccreader/CCDeclaration.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/concurrency/ccreader/CCDeclaration.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/concurrency/ccreader/CCExceptions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/concurrency/ccreader/CCExceptions.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/concurrency/ccreader/CCPredicate.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/concurrency/ccreader/CCPredicate.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/concurrency/ccreader/CCScope.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/concurrency/ccreader/CCScope.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/concurrency/ccreader/CCTerm.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/concurrency/ccreader/CCTerm.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/concurrency/ccreader/CCType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/concurrency/ccreader/CCType.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/concurrency/ccreader/CCVar.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/concurrency/ccreader/CCVar.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/concurrency/heap/HeapModel.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/concurrency/heap/HeapModel.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/concurrency/heap/HeapTheoryModel.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/concurrency/heap/HeapTheoryModel.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/params/TriCeraParameters.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/params/TriCeraParameters.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/parsers/AnnotationParser.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/parsers/AnnotationParser.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/parsers/CommentPreprocessor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/parsers/CommentPreprocessor.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/parsers/ParserUtil.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/parsers/ParserUtil.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/parsers/YAMLParser.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/parsers/YAMLParser.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/ACSLExpressionProcessor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/ACSLExpressionProcessor.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/ACSLFunctions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/ACSLFunctions.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/ACSLLineariser.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/ACSLLineariser.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/ADTExploder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/ADTExploder.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/ADTSimplifier.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/ADTSimplifier.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/AssignmentProcessor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/AssignmentProcessor.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/ClauseRemover.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/ClauseRemover.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/ContractConditionTools.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/ContractConditionTools.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/ContractConditionType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/ContractConditionType.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/ContractProcessorUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/ContractProcessorUtils.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/EqualitySwapper.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/EqualitySwapper.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/FormulaSimplifier.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/FormulaSimplifier.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/FunctionInvariantsFilter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/FunctionInvariantsFilter.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/HeapRepresentation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/HeapRepresentation.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/MergeTransformedFunctionsContracts.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/MergeTransformedFunctionsContracts.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/PointerPropProcessor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/PointerPropProcessor.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/PointerTools.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/PointerTools.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/PostconditionSimplifier.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/PostconditionSimplifier.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/ResultConverter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/ResultConverter.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/ResultPrinters.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/ResultPrinters.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/ResultProcessor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/ResultProcessor.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/SafePointerExtractor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/SafePointerExtractor.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/SolutionProcessor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/SolutionProcessor.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/TheoryOfHeapProcessor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/TheoryOfHeapProcessor.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/postprocessor/ValSet.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/postprocessor/ValSet.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/properties/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/properties/package.scala -------------------------------------------------------------------------------- /src/main/scala/tricera/symex/PathConstraints.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/main/scala/tricera/symex/PathConstraints.scala -------------------------------------------------------------------------------- /src/test/tricera/concurrency/ADTSimplifierTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/test/tricera/concurrency/ADTSimplifierTests.scala -------------------------------------------------------------------------------- /src/test/tricera/concurrency/CCReaderCollectVarDecls.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/test/tricera/concurrency/CCReaderCollectVarDecls.scala -------------------------------------------------------------------------------- /src/test/tricera/concurrency/Util.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/src/test/tricera/concurrency/Util.scala -------------------------------------------------------------------------------- /tri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/tri -------------------------------------------------------------------------------- /tri-client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/tri-client -------------------------------------------------------------------------------- /triEnv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuverifiers/tricera/HEAD/triEnv --------------------------------------------------------------------------------