From b76645266fb4a3cd55e001a735070f478f99147c Mon Sep 17 00:00:00 2001 From: revol-xut Date: Tue, 26 Sep 2023 10:43:52 +0200 Subject: [PATCH] testing --- .github/workflows/sandbox.yaml | 52 + .gitignore | 1 + src/backends/cmake.rs | 2 +- src/backends/lfc.rs | 5 +- test.sh | 11 + test/Lingo-Cpp.toml | 10630 +++++++++++++++++++++++++++++++ 6 files changed, 10699 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/sandbox.yaml create mode 100755 test.sh create mode 100644 test/Lingo-Cpp.toml diff --git a/.github/workflows/sandbox.yaml b/.github/workflows/sandbox.yaml new file mode 100644 index 0000000..ac07627 --- /dev/null +++ b/.github/workflows/sandbox.yaml @@ -0,0 +1,52 @@ +on: + pull_request: + push: + branches: + - master + +name: Sandbox +jobs: + check: + name: Sandbox + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + - id: get-release + name: get-latest-release + uses: pozetroninc/github-action-get-latest-release@master + with: + repository: lf-lang/lingua-franca + - name: Integration Test + run: | + # uninstalling java11 and installing java17 + sudo apt remove openjdk-11-jre-headless + sudo apt remove temurin-11-jdk + sudo apt remove temurin-8-jdk + sudo apt install openjdk-17-jre-headless + + # setting java17 + export JAVA_HOME=/usr/lib/jvm/java-17-openjdk-amd64 + + # building lingo + cargo b --release + + # installing lingua-franca tests + git clone https://github.com/lf-lang/lingua-franca.git ./lf-test + + # installing lfc + curl -L0 https://github.com/lf-lang/lingua-franca/releases/download/v0.5.1/lf-cli-0.5.1-Linux-x86_64.tar.gz --output ./lf-release.tar.gz + tar -xvf ./lf-release.tar.gz + + # copying Lingo.toml + cp test/Lingo-Cpp.toml ./lf-test/test/Lingo.toml + + + cd ./lf-test/test/Cpp + ../../../target/release/lingo build --lfc ../../../lf-cli-0.5.1-Linux-x86_64/bin/lfc + shell: bash + diff --git a/.gitignore b/.gitignore index a56cd70..22c1ee8 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ sandbox/ build/ **/src-gen/ tmp/ +lf-test diff --git a/src/backends/cmake.rs b/src/backends/cmake.rs index 46ef61d..f5278cc 100644 --- a/src/backends/cmake.rs +++ b/src/backends/cmake.rs @@ -41,7 +41,7 @@ fn gen_cmake_files(app: &App, options: &BuildCommandOptions) -> BuildResult { } fn do_cmake_build(results: &mut BatchBuildResults, options: &BuildCommandOptions) { - super::lfc::LFC::do_parallel_lfc_codegen(options, results, false); + super::lfc::LFC::do_parallel_lfc_codegen(options, results, true); if !options.compile_target_code { return; } diff --git a/src/backends/lfc.rs b/src/backends/lfc.rs index 95301d2..1cf3702 100644 --- a/src/backends/lfc.rs +++ b/src/backends/lfc.rs @@ -89,7 +89,10 @@ impl<'a> LfcJsonArgs<'a> { .unwrap() .as_object_mut() .unwrap(); - properties.insert("no-compile".to_string(), self.no_compile.into()); + + if !self.no_compile { + properties.insert("no-compile".to_string(), serde_json::Value::Bool(true)); + } Ok(value) } } diff --git a/test.sh b/test.sh new file mode 100755 index 0000000..4d7b992 --- /dev/null +++ b/test.sh @@ -0,0 +1,11 @@ +cargo b --release +git clone https://github.com/lf-lang/lingua-franca.git ./lf-test +curl -L0 https://github.com/lf-lang/lingua-franca/releases/download/v0.4.0/lf-cli-0.4.0.tar.gz --output ./lf-release.tar.gz +tar -xvf ./lf-release.tar.gz +#tar -xf ./lf-release.tar.gz +#sed -i 's/#!//bin//bash/#!//run//current-system//sw//bin//bash//' lf-cli-0.4.0/bin/lfc +cp test/Lingo-Cpp.toml ./lf-test/test/Cpp/Lingo.toml +cd ./lf-test/test/Cpp +ls ../../../ +ls +../../../target/release/lingo build --lfc ../../../lf-cli-0.4.0/bin/lfc diff --git a/test/Lingo-Cpp.toml b/test/Lingo-Cpp.toml new file mode 100644 index 0000000..9296cd2 --- /dev/null +++ b/test/Lingo-Cpp.toml @@ -0,0 +1,10630 @@ +[package] +name = "Tests" +version = "0.1.0" +homepage = "https://lf-lang.org" +description = "All Lingua-Franca Unit Tests" + +# shared properties of all binaries +[properties] +no-compile = true + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/ActionDelay.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/ActionIsPresent.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/ActionWithNoReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/After.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/AfterCycles.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/AfterOverlapped.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/AfterZero.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/Alignment.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/ArrayAsParameter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/ArrayAsType.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/ArrayFree.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/ArrayFreeMultiple.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/ArrayParallel.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/ArrayPrint.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/ArrayScale.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/ArraySet.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/CharLiteralInitializer.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/Composition.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/CompositionAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/CompositionGain.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/CompositionInheritance.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/CountSelf.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/CountTest.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/DanglingOutput.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/Deadline.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/DeadlineAnytime.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/DeadlineHandledAbove.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/DeadlineInherited.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/DeadlinePriority.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/DeadlineWithAfterDelay.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/DeadlineWithBanks.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/DeadlineZero.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/DelayArray.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/DelayArrayWithAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/DelayInt.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/DelayPointer.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/DelayString.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/DelayStruct.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/DelayStructWithAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/DelayStructWithAfterOverlapped.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/DelayedAction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/DelayedReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/Determinism.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/DoubleInvocation.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/DoublePort.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/DoubleReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/DoubleTrigger.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/FilePkgReader.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/FileReader.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/FloatLiteral.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/Gain.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/GenDelayTest.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/GetMicroStep.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/GetTime.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/Hello.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/HelloWorld.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/Hierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/Hierarchy2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/IdentifierLength.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/Import.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/ImportComposition.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/ImportRenamed.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/InheritanceAction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/ManualDelayedReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/Methods.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/MethodsRecursive.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/MethodsSameName.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/Microsteps.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/Minimal.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/MovingAverage.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/MultipleContained.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/MultipleOutputs.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/NativeListsAndTimes.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/NestedTriggeredReactions.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/ParameterHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/ParameterizedState.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/PeriodicDesugared.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/PersistentInputs.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/PhysicalConnection.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/PingPong.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/Preamble.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/PreambleFileLevel.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/PreambleInherited.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/ReadOutputOfContainedReactor.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/RepeatedInheritance.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/RequestStop.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/Schedule.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/ScheduleLogicalAction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/ScheduleValue.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/SelfLoop.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/SendingInside.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/SendingInside2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/SendsPointerTest.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/SetArray.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/SetToken.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/SimpleDeadline.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/SimpleImport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/SlowingClock.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/SlowingClockPhysical.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/StartupOutFromInside.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/Starvation.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/Stop.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/StopZero.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/Stride.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/StructAsState.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/StructAsType.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/StructAsTypeDirect.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/StructParallel.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/StructPrint.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/StructScale.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/SubclassesAndStartup.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/TestForPreviousOutput.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/TimeLimit.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/TimeState.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/Timeout.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/TimeoutZero.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/ToReactionNested.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/TriggerDownstreamOnlyIfPresent2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/UnconnectedInput.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/UnconnectedOutput.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/Wcet.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/arduino/AnalogReadSerial.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/arduino/Blink.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/arduino/BlinkAttemptThreading.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/arduino/BlinkMBED.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/arduino/DigitalReadSerial.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/arduino/Fade.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/arduino/ReadAnalogVoltage.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/AsyncCallback.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/AsyncCallbackDrop.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/AsyncCallbackReplace.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/CompositionThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/DeadlineHandledAboveThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/DeadlineThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/DelayIntThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/DeterminismThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/DoubleReactionThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/GainThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/HelloThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/ImportThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/MinimalThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/PingPongThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/ScheduleAt.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/ScheduleTwice.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/ScheduleTwiceThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/SendingInsideThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/StarvationThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/StopThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/StopZeroThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/Threaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/ThreadedMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/ThreadedThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/TimeLimitThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/TimeoutThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/TimeoutZeroThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/Tracing.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/Workers.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/concurrent/failing/Watchdog.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/docker/FilesPropertyContainerized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/docker/HelloWorldContainerized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/docker/PingPongContainerized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/docker/federated/DistributedCountContainerized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/docker/federated/DistributedDoublePortContainerized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/docker/federated/DistributedMultiportContainerized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/docker/federated/DistributedStopDecentralizedContainerized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/enclave/EnclaveRequestStop.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/BankIndex.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/BroadcastFeedback.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/BroadcastFeedbackWithHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/ChainWithDelay.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/CycleDetection.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DecentralizedP2PComm.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DecentralizedP2PUnbalancedTimeout.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DecentralizedP2PUnbalancedTimeoutPhysical.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedBankToMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedCount.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedCountDecentralized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedCountDecentralizedLate.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedCountDecentralizedLateHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedCountPhysical.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedCountPhysicalAfterDelay.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedCountPhysicalDecentralized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedDoublePort.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedLogicalActionUpstreamLong.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedLoopedAction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedLoopedActionDecentralized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedLoopedPhysicalAction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedLoopedPhysicalActionDecentralized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedMultiportToBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedMultiportToken.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedNetworkOrder.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedPhysicalActionUpstream.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedPhysicalActionUpstreamLong.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedStop.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedStopDecentralized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedStopZero.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedStopZeroDecentralized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/DistributedToken.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/EnclaveFederatedRequestStop.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/FederatedFilePkgReader.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/FederatedFileReader.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/FeedbackDelay.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/FeedbackDelaySimple.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/HelloDistributed.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/InheritanceFederated.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/InheritanceFederatedImport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/LevelPattern.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/LoopDistributedCentralized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/LoopDistributedCentralized2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/LoopDistributedCentralizedPhysicalAction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/LoopDistributedCentralizedPrecedence.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/LoopDistributedCentralizedPrecedenceHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/LoopDistributedDecentralized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/LoopDistributedDouble.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/ParallelDestinations.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/ParallelSources.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/ParallelSourcesMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/PhysicalSTP.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/PingPongDistributed.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/PingPongDistributedPhysical.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/STPParameter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/SimpleFederated.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/SimpleFederatedAuthenticated.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/SpuriousDependency.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/StopAtShutdown.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/TopLevelArtifacts.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/failing/ClockSync.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/failing/DistributedDoublePortLooped.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/failing/DistributedDoublePortLooped2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/failing/DistributedNetworkOrderDecentralized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/failing/LoopDistributedDecentralizedPrecedence.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/federated/failing/LoopDistributedDecentralizedPrecedenceHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/generics/MultipleInstantiations.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/generics/ParameterAsArgument.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/generics/Template.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/generics/TypeCheck.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/modal_models/BanksCount3ModesComplex.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/modal_models/BanksCount3ModesSimple.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/modal_models/BanksModalStateReset.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/modal_models/ConvertCaseTest.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/modal_models/Count3Modes.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/modal_models/MixedReactions.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/modal_models/ModalActions.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/modal_models/ModalAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/modal_models/ModalCycleBreaker.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/modal_models/ModalNestedReactions.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/modal_models/ModalStartupShutdown.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/modal_models/ModalStateReset.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/modal_models/ModalStateResetAuto.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/modal_models/ModalTimers.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/modal_models/MultipleOutputFeeder_2Connections.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/modal_models/MultipleOutputFeeder_ReactionConnections.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/modal_models/ResetStateVariableOfTypeTime.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/modal_models/ResetStateVariableWithParameterizedValue.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/modal_models/util/TraceTesting.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/BankGangedConnections.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/BankIndexInitializer.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/BankMulticast.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/BankMultiportToReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/BankReactionsInContainer.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/BankSelfBroadcast.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/BankToBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/BankToBankMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/BankToBankMultiportAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/BankToMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/BankToReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/Broadcast.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/BroadcastAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/BroadcastMultipleAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/DualBanks.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/DualBanksMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/FullyConnected.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/FullyConnectedAddressable.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/FullyConnectedAddressableAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/MultiBank_UnconnectedOutput_Test.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/MultiPort_MultiBankTest_UnconnectedOutput_Test.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/MultiportFromBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/MultiportFromBankHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/MultiportFromBankHierarchyAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/MultiportFromHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/MultiportFromReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/MultiportIn.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/MultiportInParameterized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/MultiportMutableInput.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/MultiportMutableInputArray.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/MultiportOut.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/MultiportToBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/MultiportToBankAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/MultiportToBankDouble.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/MultiportToBankHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/MultiportToHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/MultiportToMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/MultiportToMultiport2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/MultiportToMultiport2After.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/MultiportToMultiportArray.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/MultiportToMultiportParameter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/MultiportToPort.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/MultiportToReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/NestedBanks.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/NestedInterleavedBanks.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/PipelineAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/ReactionToContainedBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/ReactionToContainedBank2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/ReactionToContainedBankMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/ReactionsToNested.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/Sparse.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/SparseFallback.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/multiport/TriggerDownstreamOnlyIfPresent.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/no_inlining/BankMultiportToReactionNoInlining.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/no_inlining/BankToReactionNoInlining.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/no_inlining/Count.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/no_inlining/CountHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/no_inlining/IntPrint.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/no_inlining/MultiportToReactionNoInlining.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/serialization/PersonProtocolBuffers.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/serialization/ProtoNoPacking.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/serialization/ROSBuiltInSerialization.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/serialization/ROSBuiltInSerializationSharedPtr.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/target/CMakeInclude.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/target/DistributedCMakeInclude.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/target/DistributedCMakeIncludeSeparateCompile.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/target/FederatedFiles.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/target/Files.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/target/HelloWorldCCPP.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/target/HelloWorldFederatedCCPP.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/target/HelloWorldThreadedCPP.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/target/Math.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/target/Platform.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/token/TokenContainedPrint.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/token/TokenContainedPrintBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/token/TokenContainedSource.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/token/TokenContainedSourceBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/token/TokenDelayTest.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/token/TokenMutable.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/token/TokenSourcePrint.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/token/TokenSourceScalePrint.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/verifier/ADASModel.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/verifier/AircraftDoor.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/verifier/Alarm.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/verifier/CoopSchedule.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/verifier/Election2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/verifier/PingPongVerifier.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/verifier/ProcessMsg.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/verifier/ProcessSync.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/verifier/Ring.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/verifier/SafeSend.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/verifier/Thermostat.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/verifier/TrainDoor.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/verifier/UnsafeSend.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/zephyr/boards/ArduinoDue.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/zephyr/boards/ESP32.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/zephyr/boards/GD32.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/zephyr/boards/NRF52.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/zephyr/boards/NXPIMXRT1170.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/zephyr/boards/NXPS32.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/zephyr/boards/SAM.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/zephyr/boards/STM32.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/zephyr/threaded/UserThreads.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/zephyr/unthreaded/HelloZephyr.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "C/src/zephyr/unthreaded/Timer.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/ActionDelay.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/ActionIsPresent.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/ActionValues.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/ActionWithNoReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/After.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/AfterOverlapped.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/AfterZero.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/Alignment.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/ArrayAsParameter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/ArrayAsType.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/ArrayParallel.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/ArrayPrint.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/ArrayScale.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/Banking.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/BenchmarkRunner.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/CharLiteralInitializer.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/Composition.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/CompositionAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/CompositionGain.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/ConnectionMerging.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/CountTest.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/DanglingOutput.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/Deadline.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/DeadlineHandledAbove.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/DelayInt.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/DelayedAction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/DelayedReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/Determinism.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/DoubleInvocation.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/DoublePort.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/DoubleReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/DoubleTrigger.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/FloatLiteral.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/Gain.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/GetMicroStep.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/GetTime.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/Hello.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/HelloBodylessWorld.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/HelloWorld.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/Hierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/Hierarchy2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/Import.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/ImportComposition.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/ImportRenamed.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/ManualDelayedReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/Methods.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/Microsteps.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/Minimal.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/MovingAverage.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/MultipleContained.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/NativeListsAndTimes.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/NestedTriggeredReactions.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/ParameterHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/ParameterizedState.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/ParametersOutOfOrder.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/PeriodicDesugared.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/PhysicalConnection.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/Pipeline.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/PreambleTest.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/ReadOutputOfContainedReactor.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/Schedule.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/ScheduleLogicalAction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/SelfLoop.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/SendingInside.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/SendingInside2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/ShutdownAsync.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/ShutdownSync.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/SimpleDeadline.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/SimpleImport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/SlowingClock.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/SlowingClockPhysical.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/StartupOutFromInside.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/Starve.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/StarveZero.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/Stride.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/StructAsState.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/StructAsType.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/StructAsTypeDirect.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/StructParallel.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/StructPrint.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/StructScale.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/TestForPreviousOutput.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/TimeLimit.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/TimeState.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/TimerIsPresent.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/ToReactionNested.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/TriggerDownstreamOnlyIfPresent2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/concurrent/AsyncCallback.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/concurrent/AsyncCallback2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/concurrent/CompositionThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/concurrent/DeadlineHandledAboveThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/concurrent/DeadlineThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/concurrent/DelayIntThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/concurrent/DeterminismThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/concurrent/DoubleReactionThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/concurrent/GainThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/concurrent/HelloThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/concurrent/ImportThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/concurrent/MinimalThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/concurrent/SendingInsideThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/concurrent/Threaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/concurrent/ThreadedThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/concurrent/TimeLimitThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/concurrent/Workers.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveBankEach.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveBroadcast.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunication.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunication2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunicationDelayed.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunicationDelayed2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunicationDelayedLocalEvents.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunicationLocalEvents.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunicationMultiportToBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunicationMultiportToBankDelayed.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunicationMultiportToBankEach.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunicationMultiportToBankEachDelayed.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunicationMultiportToBankEachPhysical.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunicationMultiportToBankPhysical.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunicationPhysical.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunicationPhysicalLocalEvents.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCycle.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCycle2lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCycleTwoTimers.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveHelloWorld.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveMultiportToPort.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveMultiportToPort2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveShutdown.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveSparseUpstreamEvents.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveSparseUpstreamEventsDelayed.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveSparseUpstreamEventsPhysical.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveTimeout.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveUpstreamPhysicalAction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveUpstreamPhysicalActionDelayed.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/enclave/FastAndSlow.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/BankSelfBroadcast.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/BankToBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/BankToBankMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/BankToBankMultiportAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/BankToMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/Broadcast.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/BroadcastAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/BroadcastMultipleAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/FullyConnected.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/FullyConnectedAddressable.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/FullyConnectedAddressableAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/IndexIntoMultiportInput.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/IndexIntoMultiportOutput.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/Multiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportFromBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportFromBankHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportFromBankHierarchyAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportFromHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportIn.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportMultipleSet.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportOut.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportToBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportToBankAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportToBankHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportToHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportToMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportToMultiport2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportToMultiport2After.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportToMultiportArray.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportToMultiportPhysical.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportToPort.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/PipelineAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/ReadMultiportOutputOfContainedBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/ReadOutputOfContainedBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/SparseMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/WidthGivenByCode.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/WriteInputOfContainedBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/multiport/WriteMultiportInputOfContainedBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/properties/Fast.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/properties/Timeout.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/properties/TimeoutZero.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/target/AfterVoid.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/target/BraceAndParenInitialization.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/target/CMakeInclude.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/target/CliParserGenericArguments.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/target/CombinedTypeNames.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/target/GenericAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/target/GenericDelay.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/target/GenericParameterAndState.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/target/InitializerSyntax.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/target/MultipleContainedGeneric.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/target/PointerParameters.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Cpp/src/target/PreambleFile.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Python/src/CompareTags.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Python/src/Composition.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Python/src/CompositionAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Python/src/CompositionGain.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Python/src/CompositionInheritance.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Python/src/CountSelf.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Python/src/CountTest.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Python/src/federated/ChainWithDelay.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Python/src/federated/CycleDetection.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Python/src/federated/failing/ClockSync.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Python/src/modal_models/ConvertCaseTest.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Python/src/modal_models/Count3Modes.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Rust/src/CompositionInitializationOrder.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Rust/src/CompositionWithPorts.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Rust/src/CtorParamDefault.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Rust/src/CtorParamMixed.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Rust/src/CtorParamSimple.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Rust/src/generics/CtorParamGeneric.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Rust/src/generics/CtorParamGenericInst.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Rust/src/multiport/ConnectionToSelfBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Rust/src/multiport/ConnectionToSelfMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Rust/src/multiport/CycledLhs_SelfLoop.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Rust/src/multiport/CycledLhs_Single.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Rust/src/target/CargoDependency.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Rust/src/target/CargoDependencyOnRuntime.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "Rust/src/target/CliFeature.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "TypeScript/src/Composition.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "TypeScript/src/CompositionAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "TypeScript/src/CountTest.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "C" +platform = "Native" +main_reactor = "TypeScript/src/federated/ChainWithDelay.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/ActionDelay.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/ActionIsPresent.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/ActionValues.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/ActionWithNoReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/After.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/AfterOverlapped.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/AfterZero.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/Alignment.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/ArrayAsParameter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/ArrayAsType.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/ArrayParallel.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/ArrayPrint.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/ArrayScale.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/Banking.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/BenchmarkRunner.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/CharLiteralInitializer.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/Composition.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/CompositionAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/CompositionGain.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/ConnectionMerging.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/CountTest.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/DanglingOutput.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/Deadline.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/DeadlineHandledAbove.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/DelayInt.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/DelayedAction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/DelayedReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/Determinism.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/DoubleInvocation.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/DoublePort.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/DoubleReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/DoubleTrigger.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/FloatLiteral.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/Gain.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/GetMicroStep.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/GetTime.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/Hello.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/HelloBodylessWorld.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/HelloWorld.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/Hierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/Hierarchy2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/Import.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/ImportComposition.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/ImportRenamed.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/ManualDelayedReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/Methods.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/Microsteps.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/Minimal.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/MovingAverage.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/MultipleContained.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/NativeListsAndTimes.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/NestedTriggeredReactions.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/ParameterHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/ParameterizedState.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/ParametersOutOfOrder.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/PeriodicDesugared.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/PhysicalConnection.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/Pipeline.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/PreambleTest.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/ReadOutputOfContainedReactor.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/Schedule.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/ScheduleLogicalAction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/SelfLoop.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/SendingInside.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/SendingInside2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/ShutdownAsync.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/ShutdownSync.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/SimpleDeadline.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/SimpleImport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/SlowingClock.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/SlowingClockPhysical.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/StartupOutFromInside.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/Starve.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/StarveZero.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/Stride.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/StructAsState.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/StructAsType.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/StructAsTypeDirect.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/StructParallel.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/StructPrint.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/StructScale.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/TestForPreviousOutput.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/TimeLimit.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/TimeState.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/TimerIsPresent.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/ToReactionNested.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/TriggerDownstreamOnlyIfPresent2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/concurrent/AsyncCallback.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/concurrent/AsyncCallback2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/concurrent/CompositionThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/concurrent/DeadlineHandledAboveThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/concurrent/DeadlineThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/concurrent/DelayIntThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/concurrent/DeterminismThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/concurrent/DoubleReactionThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/concurrent/GainThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/concurrent/HelloThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/concurrent/ImportThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/concurrent/MinimalThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/concurrent/SendingInsideThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/concurrent/Threaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/concurrent/ThreadedThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/concurrent/TimeLimitThreaded.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/concurrent/Workers.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveBankEach.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveBroadcast.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunication.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunication2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunicationDelayed.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunicationDelayed2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunicationDelayedLocalEvents.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunicationLocalEvents.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunicationMultiportToBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunicationMultiportToBankDelayed.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunicationMultiportToBankEach.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunicationMultiportToBankEachDelayed.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunicationMultiportToBankEachPhysical.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunicationMultiportToBankPhysical.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunicationPhysical.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCommunicationPhysicalLocalEvents.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCycle.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCycle2lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveCycleTwoTimers.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveHelloWorld.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveMultiportToPort.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveMultiportToPort2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveShutdown.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveSparseUpstreamEvents.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveSparseUpstreamEventsDelayed.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveSparseUpstreamEventsPhysical.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveTimeout.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveUpstreamPhysicalAction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/EnclaveUpstreamPhysicalActionDelayed.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/enclave/FastAndSlow.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/BankSelfBroadcast.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/BankToBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/BankToBankMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/BankToBankMultiportAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/BankToMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/Broadcast.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/BroadcastAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/BroadcastMultipleAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/FullyConnected.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/FullyConnectedAddressable.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/FullyConnectedAddressableAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/IndexIntoMultiportInput.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/IndexIntoMultiportOutput.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/Multiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportFromBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportFromBankHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportFromBankHierarchyAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportFromHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportIn.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportMultipleSet.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportOut.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportToBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportToBankAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportToBankHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportToHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportToMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportToMultiport2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportToMultiport2After.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportToMultiportArray.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportToMultiportPhysical.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/MultiportToPort.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/PipelineAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/ReadMultiportOutputOfContainedBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/ReadOutputOfContainedBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/SparseMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/WidthGivenByCode.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/WriteInputOfContainedBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/multiport/WriteMultiportInputOfContainedBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/properties/Fast.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/properties/Timeout.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/properties/TimeoutZero.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/target/AfterVoid.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/target/BraceAndParenInitialization.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/target/CMakeInclude.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/target/CliParserGenericArguments.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/target/CombinedTypeNames.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/target/GenericAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/target/GenericDelay.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/target/GenericParameterAndState.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/target/InitializerSyntax.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/target/MultipleContainedGeneric.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/target/PointerParameters.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Cpp" +platform = "Native" +main_reactor = "Cpp/src/target/PreambleFile.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/ActionDelay.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/ActionIsPresent.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/ActionWithNoReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/After.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/AfterCycles.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/AfterOverlapped.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/ArrayAsParameter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/ArrayAsType.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/ArrayFree.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/ArrayParallel.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/ArrayPrint.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/ArrayScale.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/CompareTags.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/Composition.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/CompositionAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/CompositionGain.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/CompositionInheritance.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/CountSelf.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/CountTest.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/DanglingOutput.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/Deadline.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/DeadlineHandledAbove.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/DelayArray.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/DelayArrayWithAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/DelayInt.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/DelayString.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/DelayStruct.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/DelayStructWithAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/DelayStructWithAfterOverlapped.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/DelayedAction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/DelayedReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/Determinism.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/DoubleInvocation.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/DoubleReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/FloatLiteral.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/Gain.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/GetMicroStep.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/GetTime.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/Hello.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/HelloWorld.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/Hierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/Hierarchy2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/IdentifierLength.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/Import.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/ImportComposition.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/ImportRenamed.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/ManualDelayedReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/Methods.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/MethodsRecursive.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/MethodsSameName.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/Microsteps.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/Minimal.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/MovingAverage.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/MultipleContained.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/NativeListsAndTimes.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/ParameterizedState.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/PeriodicDesugared.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/PingPong.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/Pipeline.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/Preamble.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/ReadOutputOfContainedReactor.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/Schedule.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/ScheduleLogicalAction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/ScheduleValue.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/SelfLoop.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/SendingInside.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/SendingInside2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/SetArray.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/SimpleDeadline.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/SimpleImport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/SlowingClock.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/SlowingClockPhysical.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/StartupOutFromInside.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/Stride.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/StructAsState.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/StructAsType.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/StructAsTypeDirect.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/StructParallel.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/StructPrint.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/StructScale.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/SubclassesAndStartup.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/TestForPreviousOutput.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/TimeLimit.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/TimeState.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/Timers.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/TriggerDownstreamOnlyIfPresent.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/TriggerDownstreamOnlyIfPresent2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/UnconnectedInput.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/Wcet.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/concurrent/AsyncCallback.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/concurrent/AsyncCallbackNoTimer.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/docker/FilesPropertyContainerized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/docker/HelloWorldContainerized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/docker/PingPongContainerized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/docker/federated/DistributedCountContainerized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/docker/federated/DistributedDoublePortContainerized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/docker/federated/DistributedMultiportContainerized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/docker/federated/DistributedSendClassContainerized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/docker/federated/DistributedStopDecentralizedContainerized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/BroadcastFeedback.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/BroadcastFeedbackWithHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/ChainWithDelay.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/CycleDetection.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DecentralizedP2PComm.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DecentralizedP2PUnbalancedTimeout.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DecentralizedP2PUnbalancedTimeoutPhysical.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedBankToMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedCount.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedCountDecentralized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedCountDecentralizedLate.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedCountDecentralizedLateDownstream.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedCountDecentralizedLateHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedCountPhysical.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedCountPhysicalAfterDelay.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedCountPhysicalDecentralized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedDoublePort.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedLoopedAction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedLoopedPhysicalAction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedLoopedPhysicalActionDecentralized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedMultiportToBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedMultiportToken.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedNoReact.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedSendClass.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedStop.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedStopDecentralized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedStopZero.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedStructAsType.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedStructAsTypeDirect.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedStructParallel.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedStructPrint.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/DistributedStructScale.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/HelloDistributed.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/LoopDistributedCentralizedPrecedenceHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/ParallelDestinations.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/ParallelSources.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/ParallelSourcesMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/PhysicalSTP.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/PingPongDistributed.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/StopAtShutdown.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/failing/ClockSync.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/failing/DistributedLoopedActionDecentralized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/failing/DistributedNetworkOrder.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/failing/LoopDistributedCentralized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/failing/LoopDistributedCentralizedPrecedence.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/failing/LoopDistributedDecentralized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/failing/LoopDistributedDouble.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/federated/failing/TopLevelArtifacts.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/modal_models/BanksCount3ModesComplex.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/modal_models/BanksCount3ModesSimple.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/modal_models/BanksModalStateReset.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/modal_models/ConvertCaseTest.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/modal_models/Count3Modes.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/modal_models/ModalActions.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/modal_models/ModalAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/modal_models/ModalCycleBreaker.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/modal_models/ModalNestedReactions.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/modal_models/ModalStartupShutdown.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/modal_models/ModalStateReset.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/modal_models/ModalStateResetAuto.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/modal_models/ModalTimers.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/modal_models/MultipleOutputFeeder_2Connections.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/modal_models/MultipleOutputFeeder_ReactionConnections.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/modal_models/util/TraceTesting.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/BankIndexInitializer.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/BankReactionsInContainer.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/BankToBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/BankToBankMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/BankToBankMultiportAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/BankToMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/Broadcast.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/BroadcastAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/BroadcastMultipleAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/MultiportFromBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/MultiportFromBankHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/MultiportFromBankHierarchyAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/MultiportFromHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/MultiportFromReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/MultiportIn.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/MultiportInParameterized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/MultiportMutableInput.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/MultiportMutableInputArray.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/MultiportOut.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/MultiportToBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/MultiportToBankAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/MultiportToBankHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/MultiportToHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/MultiportToMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/MultiportToMultiport2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/MultiportToMultiport2After.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/MultiportToMultiportArray.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/MultiportToMultiportParameter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/MultiportToPort.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/MultiportToReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/NestedBanks.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/NestedInterleavedBanks.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/PipelineAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/multiport/ReactionsToNested.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/serialization/PersonProtocolBuffers.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/serialization/ProtoNoPacking.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Python" +platform = "Native" +main_reactor = "Python/src/target/AfterNoTypes.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/ActionDelay.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/ActionImplicitDelay.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/ActionIsPresent.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/ActionIsPresentDouble.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/ActionScheduleMicrostep.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/ActionValues.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/ActionValuesCleanup.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/ArrayAsParameter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/CompositionInitializationOrder.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/CompositionWithPorts.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/CtorParamDefault.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/CtorParamMixed.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/CtorParamSimple.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/DependencyOnChildPort.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/DependencyThroughChildPort.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/DependencyUseAccessible.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/DependencyUseNonTrigger.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/DependencyUseOnLogicalAction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/FloatLiteral.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/Import.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/ImportPreambleItem.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/MainReactorParam.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/Minimal.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/MovingAverage.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/NativeListsAndTimes.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/PhysicalActionCanBeScheduledSynchronously.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/PhysicalActionKeepaliveIsSmart.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/PhysicalActionWakesSleepingScheduler.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/PhysicalActionWithKeepalive.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/PortConnectionInSelfInChild.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/PortConnectionInSelfOutSelf.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/PortConnectionOutChildOutSelf.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/PortRefCleanup.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/PortValueCleanup.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/Preamble.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/ReactionLabels.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/ReservedKeywords.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/SingleFileGeneration.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/StateDefaultValue.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/StateInitializerVisibility.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/Stop.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/StopAsync.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/StopCleanup.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/StopDuringStartup.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/StopIdempotence.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/StopNoEvent.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/StopTimeout.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/StopTimeoutExact.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/StopTopology.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/StructAsState.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/StructAsType.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/TimeState.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/TimerDefaults.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/TimerIsPresent.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/TimerPeriodic.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/Timers.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/TypeVarLengthList.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/concurrent/AsyncCallback.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/concurrent/Workers.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/generics/CtorParamGeneric.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/generics/CtorParamGenericInst.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/generics/GenericComplexType.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/generics/GenericReactor.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/multiport/ConnectionToSelfBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/multiport/ConnectionToSelfMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/multiport/CycledLhs_SelfLoop.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/multiport/CycledLhs_Single.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/multiport/FullyConnected.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/multiport/FullyConnectedAddressable.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/multiport/MultiportFromBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/multiport/MultiportFromHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/multiport/MultiportIn.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/multiport/MultiportOut.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/multiport/MultiportToBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/multiport/MultiportToBankHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/multiport/MultiportToMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/multiport/MultiportToMultiport2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/multiport/ReadOutputOfContainedBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/multiport/WidthWithParameter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/multiport/WriteInputOfContainedBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/target/BuildProfileDefaultIsDev.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/target/BuildProfileRelease.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/target/CargoDependency.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/target/CargoDependencyOnRuntime.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/target/CliFeature.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/target/MainParameterCanBeExpression.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/target/ModuleDependency.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "Rust" +platform = "Native" +main_reactor = "Rust/src/target/ModuleDependencyWithDirModule.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/ActionDelay.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/ActionWithNoReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/After.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/ArrayAsParameter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/ArrayAsType.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/ArrayPrint.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/ArrayScale.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/Composition.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/CompositionAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/CountTest.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/DanglingOutput.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/Deadline.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/DeadlineHandledAbove.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/DelayInt.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/DelayedAction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/DelayedReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/Determinism.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/DoubleInvocation.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/DoubleReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/DoubleTrigger.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/FloatLiteral.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/Gain.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/GetTime.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/Hello.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/HelloWorld.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/Hierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/Hierarchy2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/Import.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/Microsteps.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/Minimal.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/MovingAverage.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/MultipleContained.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/NativeListsAndTimes.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/ParameterizedState.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/PeriodicDesugared.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/PhysicalConnection.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/Preamble.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/ReadOutputOfContainedReactor.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/Schedule.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/ScheduleLogicalAction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/SendingInside.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/SendingInside2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/SendsPointerTest.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/SimpleDeadline.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/SimpleImport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/SlowingClock.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/SlowingClockPhysical.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/Stop.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/Stride.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/StructAsState.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/StructAsType.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/StructAsTypeDirect.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/StructPrint.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/StructScale.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/TestForPreviousOutput.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/TimeLimit.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/TimeState.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/Wcet.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/concurrent/AsyncCallback.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/docker/HelloWorldContainerized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/docker/federated/DistributedCountContainerized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/federated/ChainWithDelay.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/federated/DistributedCount.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/federated/DistributedCountPhysical.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/federated/DistributedCountPhysicalAfterDelay.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/federated/DistributedDoublePort.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/federated/DistributedLoopedAction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/federated/DistributedLoopedPhysicalAction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/federated/DistributedStop.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/federated/DistributedStopZero.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/federated/HelloDistributed.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/federated/LoopDistributedCentralized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/federated/LoopDistributedDouble.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/federated/PingPongDistributed.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/federated/PingPongDistributedPhysical.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/federated/SimpleFederated.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/federated/SpuriousDependency.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/federated/StopAtShutdown.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/federated/TopLevelArtifacts.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/BankMulticast.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/BankMultiportToReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/BankReactionsInContainer.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/BankSelfBroadcast.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/BankToBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/BankToBankMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/BankToBankMultiportAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/BankToMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/BankToReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/Broadcast.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/BroadcastAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/BroadcastMultipleAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/FullyConnected.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/MultiportFromBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/MultiportFromBankHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/MultiportFromBankHierarchyAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/MultiportFromHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/MultiportFromReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/MultiportIn.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/MultiportInParameterized.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/MultiportMutableInput.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/MultiportMutableInputArray.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/MultiportOut.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/MultiportToBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/MultiportToBankAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/MultiportToBankDouble.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/MultiportToBankHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/MultiportToHierarchy.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/MultiportToMultiport.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/MultiportToMultiport2.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/MultiportToMultiport2After.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/MultiportToMultiportArray.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/MultiportToMultiportParameter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/MultiportToPort.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/MultiportToReaction.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/NestedBanks.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/PipelineAfter.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/ReactionToContainedBank.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/multiport/ReactionsToNested.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/serialization/ProtoNoPacking.lf" + +[app.dependencies] + +[app.properties] + +[[app]] +target = "TypeScript" +platform = "Native" +main_reactor = "TypeScript/src/target/AfterNoTypes.lf" + +[app.dependencies] + +[app.properties] +