diff --git a/src/libkiter/algorithms/dse/dse.cpp b/src/libkiter/algorithms/dse/dse.cpp index 4f14a397..7cfcc215 100644 --- a/src/libkiter/algorithms/dse/dse.cpp +++ b/src/libkiter/algorithms/dse/dse.cpp @@ -113,6 +113,8 @@ void algorithms::throughput_buffering_tradeoff_dse(models::Dataflow* const dataf std::map minStepSizes; std::map> minChannelSizes; TOKEN_UNIT minDistributionSize; + std::chrono::duration cumulativeTime; // store timings + auto cumulativeStart = std::chrono::steady_clock::now(); // DSE cumulative time starts here VERBOSE_DSE("INITIALISING SEARCH PARAMETERS:" << std::endl); if (modelBoundedBuffers) { @@ -218,7 +220,6 @@ void algorithms::throughput_buffering_tradeoff_dse(models::Dataflow* const dataf // add initial distribution to list of storage distributions StorageDistributionSet checklist; - std::chrono::duration cumulativeTime; // store timings // if (isMonoOpt) { // methodName = "_m_opt"; // auto startTime = std::chrono::steady_clock::now(); @@ -262,7 +263,7 @@ void algorithms::throughput_buffering_tradeoff_dse(models::Dataflow* const dataf } auto endTime = std::chrono::steady_clock::now(); std::chrono::duration execTime = endTime - startTime; // duration in ms - cumulativeTime += execTime; + cumulativeTime += execTime; // NOTE this will need to be updated: we want to track cumulative time as the global time elapsed rather than the sum of execution times std::cout << "B_M_OPT: time taken: " << cumulativeTime.count() << std::endl; } else if (modelBoundedBuffers) { @@ -352,7 +353,6 @@ void algorithms::throughput_buffering_tradeoff_dse(models::Dataflow* const dataf auto endTime = std::chrono::steady_clock::now(); std::chrono::duration execTime = endTime - startTime; // duration in ms - cumulativeTime += execTime; computation_counter++; if (result.throughput < 0) { // all deadlocked graphs are equal in terms of throughput @@ -366,37 +366,6 @@ void algorithms::throughput_buffering_tradeoff_dse(models::Dataflow* const dataf VERBOSE_DSE(checkDist.printInfo(dataflow, modelBoundedBuffers)); } - - // write current storage distribution info to DSE log - if (writeLogFiles) { - dseLog << checkDist.getDistributionSize() << colDelimiter - << checkDist.getThroughput() << colDelimiter; - if (modelBoundedBuffers) { - dseLog << checkDist.print_quantities_csv(dataflow_prime, modelBoundedBuffers) << colDelimiter - // << checkDist.print_dependency_mask(dataflow_prime, result, modelBoundedBuffers) << "," - << execTime.count() << colDelimiter - << cumulativeTime.count() << std::endl; - } else { - dseLog << checkDist.print_quantities_csv(dataflow, modelBoundedBuffers) << colDelimiter - // << checkDist.print_dependency_mask(dataflow, result, modelBoundedBuffers) << "," - << execTime.count() << colDelimiter - << cumulativeTime.count() << std::endl; - } - - } else { - std::cout << checkDist.getDistributionSize() << colDelimiter - << checkDist.getThroughput() << colDelimiter; - if (modelBoundedBuffers) { - std::cout << checkDist.print_quantities_csv(dataflow_prime, modelBoundedBuffers) << colDelimiter - << execTime.count() << colDelimiter - << cumulativeTime.count() << std::endl; - } else { - std::cout << checkDist.print_quantities_csv(dataflow, modelBoundedBuffers) << colDelimiter - << execTime.count() << colDelimiter - << cumulativeTime.count() << std::endl; - } - } - // Add storage distribution and computed throughput to set of minimal storage distributions VERBOSE_DSE("\n"); VERBOSE_DSE("\tUpdating set of minimal storage distributions..." @@ -448,12 +417,43 @@ void algorithms::throughput_buffering_tradeoff_dse(models::Dataflow* const dataf } } - + // NOTE we track cumulative time before the minimization algorithm in order to keep the experiment consistent with SDF3 + cumulativeTime = std::chrono::steady_clock::now() - cumulativeStart; // track time since start of DSE // Ensure minimal set is indeed minimal VERBOSE_DSE("\tTrying to minimise set with distribution size: " << checkDist.getDistributionSize() << std::endl); minStorageDist.minimizeStorageDistributions(checkDist); VERBOSE_DSE(std::endl); + + // write current storage distribution info to DSE log + if (writeLogFiles) { + dseLog << checkDist.getDistributionSize() << colDelimiter + << checkDist.getThroughput() << colDelimiter; + if (modelBoundedBuffers) { + dseLog << checkDist.print_quantities_csv(dataflow_prime, modelBoundedBuffers) << colDelimiter + // << checkDist.print_dependency_mask(dataflow_prime, result, modelBoundedBuffers) << "," + << execTime.count() << colDelimiter + << cumulativeTime.count() << std::endl; + } else { + dseLog << checkDist.print_quantities_csv(dataflow, modelBoundedBuffers) << colDelimiter + // << checkDist.print_dependency_mask(dataflow, result, modelBoundedBuffers) << "," + << execTime.count() << colDelimiter + << cumulativeTime.count() << std::endl; + } + + } else { + std::cout << checkDist.getDistributionSize() << colDelimiter + << checkDist.getThroughput() << colDelimiter; + if (modelBoundedBuffers) { + std::cout << checkDist.print_quantities_csv(dataflow_prime, modelBoundedBuffers) << colDelimiter + << execTime.count() << colDelimiter + << cumulativeTime.count() << std::endl; + } else { + std::cout << checkDist.print_quantities_csv(dataflow, modelBoundedBuffers) << colDelimiter + << execTime.count() << colDelimiter + << cumulativeTime.count() << std::endl; + } + } } // The minimum storage distribution for a throughput of 0 is (0, 0,..., 0) diff --git a/tools/sdf3.patch b/tools/sdf3.patch index e41ef63c..1823a366 100644 --- a/tools/sdf3.patch +++ b/tools/sdf3.patch @@ -1,34812 +1,7 @@ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3analysis-csdf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3analysis-csdf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3analysis-sdf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3analysis-sdf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3analyze-fsmsadf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3analyze-fsmsadf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3analyze-sadf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3analyze-sadf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3arch-sdf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3arch-sdf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3convert-csdf-sadf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3convert-csdf-sadf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3convert-sadf-csdf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3convert-sadf-csdf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3convert-sadf-fsmsadf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3convert-sadf-fsmsadf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3convert-sadf-sdf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3convert-sadf-sdf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3convert-sdf-sadf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3convert-sdf-sadf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3cost-sdf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3cost-sdf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3ctg-sdf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3ctg-sdf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3flow-fsmsadf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3flow-fsmsadf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3flow-fsmsadf-mnemee and sdf3_custom/sdf3/build/release/Linux/bin/sdf3flow-fsmsadf-mnemee differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3flow-sdf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3flow-sdf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3gast-sdf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3gast-sdf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3generate-csdf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3generate-csdf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3generate-fsmsadf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3generate-fsmsadf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3generate-sdf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3generate-sdf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3inputconvert-fsmsadf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3inputconvert-fsmsadf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3outputconvert-fsmsadf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3outputconvert-fsmsadf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3print-csdf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3print-csdf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3print-sadf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3print-sadf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3print-sdf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3print-sdf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3test and sdf3_custom/sdf3/build/release/Linux/bin/sdf3test differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3transform-csdf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3transform-csdf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3transform-fsmsadf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3transform-fsmsadf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3transform-sadf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3transform-sadf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3transform-sdf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3transform-sdf differ -Binary files sdf3-backup/sdf3/build/release/Linux/bin/sdf3verify-sadf and sdf3_custom/sdf3/build/release/Linux/bin/sdf3verify-sadf differ -Binary files sdf3-backup/sdf3/build/release/Linux/lib/libsdf3-base.so and sdf3_custom/sdf3/build/release/Linux/lib/libsdf3-base.so differ -Binary files sdf3-backup/sdf3/build/release/Linux/lib/libsdf3-csdf.so and sdf3_custom/sdf3/build/release/Linux/lib/libsdf3-csdf.so differ -Binary files sdf3-backup/sdf3/build/release/Linux/lib/libsdf3-fsmsadf.so and sdf3_custom/sdf3/build/release/Linux/lib/libsdf3-fsmsadf.so differ -Binary files sdf3-backup/sdf3/build/release/Linux/lib/libsdf3-sadf.so and sdf3_custom/sdf3/build/release/Linux/lib/libsdf3-sadf.so differ -Binary files sdf3-backup/sdf3/build/release/Linux/lib/libsdf3-sdf.so and sdf3_custom/sdf3/build/release/Linux/lib/libsdf3-sdf.so differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3analysis-csdf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3analysis-csdf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3analysis-sdf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3analysis-sdf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3analyze-fsmsadf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3analyze-fsmsadf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3analyze-sadf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3analyze-sadf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3arch-sdf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3arch-sdf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3convert-csdf-sadf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3convert-csdf-sadf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3convert-sadf-csdf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3convert-sadf-csdf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3convert-sadf-fsmsadf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3convert-sadf-fsmsadf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3convert-sadf-sdf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3convert-sadf-sdf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3convert-sdf-sadf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3convert-sdf-sadf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3cost-sdf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3cost-sdf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3ctg-sdf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3ctg-sdf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3flow-fsmsadf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3flow-fsmsadf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3flow-fsmsadf-mnemee and sdf3_custom/sdf3/build/work/Linux/bin/sdf3flow-fsmsadf-mnemee differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3flow-sdf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3flow-sdf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3gast-sdf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3gast-sdf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3generate-csdf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3generate-csdf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3generate-fsmsadf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3generate-fsmsadf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3generate-sdf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3generate-sdf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3inputconvert-fsmsadf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3inputconvert-fsmsadf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3outputconvert-fsmsadf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3outputconvert-fsmsadf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3print-csdf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3print-csdf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3print-sadf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3print-sadf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3print-sdf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3print-sdf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3test and sdf3_custom/sdf3/build/work/Linux/bin/sdf3test differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3transform-csdf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3transform-csdf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3transform-fsmsadf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3transform-fsmsadf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3transform-sadf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3transform-sadf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3transform-sdf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3transform-sdf differ -Binary files sdf3-backup/sdf3/build/work/Linux/bin/sdf3verify-sadf and sdf3_custom/sdf3/build/work/Linux/bin/sdf3verify-sadf differ -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/base_exception_exception.d sdf3_custom/sdf3/build/work/Linux/dep/base_exception_exception.d ---- sdf3-backup/sdf3/build/work/Linux/dep/base_exception_exception.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/base_exception_exception.d 2021-11-25 04:57:23.970282489 +0800 -@@ -0,0 +1,2 @@ -+base_exception_exception.o: exception.cc exception.h ../string/cstring.h \ -+ ../string/../basic_types.h ../basic_types.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/base_fsm_fsm.d sdf3_custom/sdf3/build/work/Linux/dep/base_fsm_fsm.d ---- sdf3-backup/sdf3/build/work/Linux/dep/base_fsm_fsm.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/base_fsm_fsm.d 2021-11-25 04:57:24.856949174 +0800 -@@ -0,0 +1,3 @@ -+base_fsm_fsm.o: fsm.cc fsm.h ../string/cstring.h ../string/../basic_types.h \ -+ ../exception/exception.h ../exception/../string/cstring.h \ -+ ../exception/../basic_types.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/base_log_log.d sdf3_custom/sdf3/build/work/Linux/dep/base_log_log.d ---- sdf3-backup/sdf3/build/work/Linux/dep/base_log_log.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/base_log_log.d 2021-11-25 04:57:24.376949165 +0800 -@@ -0,0 +1,2 @@ -+base_log_log.o: log.cc log.h ../string/cstring.h ../string/../basic_types.h \ -+ ../basic_types.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/base_matrix_matrix.d sdf3_custom/sdf3/build/work/Linux/dep/base_matrix_matrix.d ---- sdf3-backup/sdf3/build/work/Linux/dep/base_matrix_matrix.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/base_matrix_matrix.d 2021-11-25 04:57:25.620282524 +0800 -@@ -0,0 +1 @@ -+base_matrix_matrix.o: matrix.cc matrix.h ../basic_types.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/base_maxplus_mpmatrix.d sdf3_custom/sdf3/build/work/Linux/dep/base_maxplus_mpmatrix.d ---- sdf3-backup/sdf3/build/work/Linux/dep/base_maxplus_mpmatrix.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/base_maxplus_mpmatrix.d 2021-11-25 04:57:26.166949202 +0800 -@@ -0,0 +1,3 @@ -+base_maxplus_mpmatrix.o: mpmatrix.cc mpmatrix.h mptype.h ../basic_types.h \ -+ ../string/cstring.h ../string/../basic_types.h ../exception/exception.h \ -+ ../exception/../string/cstring.h ../exception/../basic_types.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/base_shell_dirs.d sdf3_custom/sdf3/build/work/Linux/dep/base_shell_dirs.d ---- sdf3-backup/sdf3/build/work/Linux/dep/base_shell_dirs.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/base_shell_dirs.d 2021-11-25 04:57:29.133615932 +0800 -@@ -0,0 +1,7 @@ -+base_shell_dirs.o: dirs.cc dirs.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ ../string/cstring.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/base_shell_shell.d sdf3_custom/sdf3/build/work/Linux/dep/base_shell_shell.d ---- sdf3-backup/sdf3/build/work/Linux/dep/base_shell_shell.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/base_shell_shell.d 2021-11-25 04:57:29.610282609 +0800 -@@ -0,0 +1,4 @@ -+base_shell_shell.o: shell.cc shell.h ../string/cstring.h ../string/../basic_types.h \ -+ ../exception/exception.h ../exception/../string/cstring.h \ -+ ../exception/../basic_types.h shellnix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/string/cstring.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/base_shell_shellnix.d sdf3_custom/sdf3/build/work/Linux/dep/base_shell_shellnix.d ---- sdf3-backup/sdf3/build/work/Linux/dep/base_shell_shellnix.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/base_shell_shellnix.d 2021-11-25 04:57:29.960282616 +0800 -@@ -0,0 +1,7 @@ -+base_shell_shellnix.o: shellnix.cc shellnix.h shell.h ../string/cstring.h \ -+ ../string/../basic_types.h ../exception/exception.h \ -+ ../exception/../string/cstring.h ../exception/../basic_types.h dirs.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/base_shell_shellwin.d sdf3_custom/sdf3/build/work/Linux/dep/base_shell_shellwin.d ---- sdf3-backup/sdf3/build/work/Linux/dep/base_shell_shellwin.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/base_shell_shellwin.d 2021-11-25 04:57:30.450282626 +0800 -@@ -0,0 +1,9 @@ -+base_shell_shellwin.o: shellwin.cc dirs.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ shellwin.h shell.h ../string/cstring.h ../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/base_string_cstring.d sdf3_custom/sdf3/build/work/Linux/dep/base_string_cstring.d ---- sdf3-backup/sdf3/build/work/Linux/dep/base_string_cstring.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/base_string_cstring.d 2021-11-25 04:57:27.026949221 +0800 -@@ -0,0 +1 @@ -+base_string_cstring.o: cstring.cc cstring.h ../basic_types.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/base_tempfile_tempfile.d sdf3_custom/sdf3/build/work/Linux/dep/base_tempfile_tempfile.d ---- sdf3-backup/sdf3/build/work/Linux/dep/base_tempfile_tempfile.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/base_tempfile_tempfile.d 2021-11-25 04:57:27.686949234 +0800 -@@ -0,0 +1,2 @@ -+base_tempfile_tempfile.o: tempfile.cc tempfile.h ../string/cstring.h \ -+ ../string/../basic_types.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/base_time_time.d sdf3_custom/sdf3/build/work/Linux/dep/base_time_time.d ---- sdf3-backup/sdf3/build/work/Linux/dep/base_time_time.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/base_time_time.d 2021-11-25 04:57:28.110282577 +0800 -@@ -0,0 +1,2 @@ -+base_time_time.o: time.cc time.h ../basic_types.h ../string/cstring.h \ -+ ../string/../basic_types.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/base_xml_xml.d sdf3_custom/sdf3/build/work/Linux/dep/base_xml_xml.d ---- sdf3-backup/sdf3/build/work/Linux/dep/base_xml_xml.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/base_xml_xml.d 2022-01-07 15:09:07.608257972 +0800 -@@ -0,0 +1,23 @@ -+base_xml_xml.o: xml.cc xml.h ../string/cstring.h ../string/../basic_types.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h ../exception/exception.h \ -+ ../exception/../string/cstring.h ../exception/../basic_types.h \ -+ ../tempfile/tempfile.h ../tempfile/../string/cstring.h ../log/log.h \ -+ ../log/../string/cstring.h ../log/../basic_types.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/csdf_analysis_buffersizing_buffer.d sdf3_custom/sdf3/build/work/Linux/dep/csdf_analysis_buffersizing_buffer.d ---- sdf3-backup/sdf3/build/work/Linux/dep/csdf_analysis_buffersizing_buffer.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/csdf_analysis_buffersizing_buffer.d 2022-01-07 15:15:08.451848454 +0800 -@@ -0,0 +1,219 @@ -+csdf_analysis_buffersizing_buffer.o: buffer.cc buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/sdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/acyclic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/connected.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/cycle.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/dfs.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/check.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffersizing.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/bounded_buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/dependency_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/latency.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed_minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/single_processor_random_staticorder.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcmgraph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/selftimed_throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/tdma_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/deadlock.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/comm_trace.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/mpexplore.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/generate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/buffy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/dot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/hapi.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/html.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/flow.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/scheduling.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/autoconc.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/buffersize.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/sdftoapg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/hsdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/unfold.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/reverse_channels.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/timed/graph.h ../../base/timed/channel.h \ -+ ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/rate.h ../../base/timed/timed_types.h \ -+ ../../base/timed/actor.h ../throughput/throughput.h \ -+ ../throughput/selftimed_throughput.h \ -+ ../throughput/../../base/timed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/csdf_analysis_throughput_selftimed_throughput.d sdf3_custom/sdf3/build/work/Linux/dep/csdf_analysis_throughput_selftimed_throughput.d ---- sdf3-backup/sdf3/build/work/Linux/dep/csdf_analysis_throughput_selftimed_throughput.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/csdf_analysis_throughput_selftimed_throughput.d 2022-01-07 15:15:12.291868362 +0800 -@@ -0,0 +1,237 @@ -+csdf_analysis_throughput_selftimed_throughput.o: selftimed_throughput.cc selftimed_throughput.h \ -+ ../../base/timed/graph.h ../../base/timed/channel.h \ -+ ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/timed/../untimed/rate.h ../../base/timed/timed_types.h \ -+ ../../base/timed/actor.h ../../base/algo/components.h \ -+ ../../base/algo/../../csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/graph.h \ -+ ../../base/algo/../../base/algo/components.h \ -+ ../../base/algo/../../base/algo/dfs.h \ -+ ../../base/algo/../../base/algo/../../csdf.h \ -+ ../../base/algo/../../analysis/analysis.h \ -+ ../../base/algo/../../analysis/buffersizing/buffersizing.h \ -+ ../../base/algo/../../analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/sdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/acyclic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/connected.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/cycle.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/dfs.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/check.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffersizing.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/bounded_buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/dependency_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/latency.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed_minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/single_processor_random_staticorder.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcmgraph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/selftimed_throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/tdma_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/deadlock.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/comm_trace.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/mpexplore.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/generate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/buffy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/dot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/hapi.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/html.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/flow.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/scheduling.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/autoconc.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/buffersize.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/sdftoapg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/hsdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/unfold.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/reverse_channels.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/algo/../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/algo/../../analysis/throughput/throughput.h \ -+ ../../base/algo/../../analysis/throughput/selftimed_throughput.h \ -+ ../../base/algo/../../generate/generate.h \ -+ ../../base/algo/../../generate/../csdf.h \ -+ ../../base/algo/../../output/buffer_throughput/buffy.h \ -+ ../../base/algo/../../output/buffer_throughput/../../csdf.h \ -+ ../../base/algo/../../output/xml/xml.h \ -+ ../../base/algo/../../output/xml/../../csdf.h \ -+ ../../base/algo/../../transform/to_sdf/sdftocsdf.h \ -+ ../../base/algo/../../transform/to_sdf/../../csdf.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/csdf_base_algo_components.d sdf3_custom/sdf3/build/work/Linux/dep/csdf_base_algo_components.d ---- sdf3-backup/sdf3/build/work/Linux/dep/csdf_base_algo_components.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/csdf_base_algo_components.d 2022-01-07 15:15:14.595213772 +0800 -@@ -0,0 +1,235 @@ -+csdf_base_algo_components.o: components.cc components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ ../../csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/rate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/actor.h \ -+ ../../base/algo/components.h ../../base/algo/dfs.h \ -+ ../../base/algo/../../csdf.h ../../analysis/analysis.h \ -+ ../../analysis/buffersizing/buffersizing.h \ -+ ../../analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/sdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/acyclic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/connected.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/cycle.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/dfs.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/check.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffersizing.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/bounded_buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/dependency_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/latency.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed_minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/single_processor_random_staticorder.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcmgraph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/selftimed_throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/tdma_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/deadlock.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/comm_trace.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/mpexplore.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/generate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/buffy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/dot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/hapi.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/html.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/flow.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/scheduling.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/autoconc.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/buffersize.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/sdftoapg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/hsdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/unfold.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/reverse_channels.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/selftimed_throughput.h \ -+ ../../analysis/throughput/../../base/timed/graph.h \ -+ ../../generate/generate.h ../../generate/../csdf.h \ -+ ../../output/buffer_throughput/buffy.h \ -+ ../../output/buffer_throughput/../../csdf.h ../../output/xml/xml.h \ -+ ../../output/xml/../../csdf.h ../../transform/to_sdf/sdftocsdf.h \ -+ ../../transform/to_sdf/../../csdf.h dfs.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/csdf_base_algo_dfs.d sdf3_custom/sdf3/build/work/Linux/dep/csdf_base_algo_dfs.d ---- sdf3-backup/sdf3/build/work/Linux/dep/csdf_base_algo_dfs.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/csdf_base_algo_dfs.d 2022-01-07 15:15:16.235222432 +0800 -@@ -0,0 +1,235 @@ -+csdf_base_algo_dfs.o: dfs.cc dfs.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ ../../csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/rate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/actor.h \ -+ ../../base/algo/components.h ../../base/algo/../../csdf.h \ -+ ../../base/algo/dfs.h ../../analysis/analysis.h \ -+ ../../analysis/buffersizing/buffersizing.h \ -+ ../../analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/sdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/acyclic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/connected.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/cycle.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/dfs.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/check.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffersizing.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/bounded_buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/dependency_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/latency.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed_minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/single_processor_random_staticorder.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcmgraph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/selftimed_throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/tdma_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/deadlock.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/comm_trace.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/mpexplore.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/generate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/buffy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/dot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/hapi.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/html.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/flow.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/scheduling.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/autoconc.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/buffersize.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/sdftoapg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/hsdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/unfold.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/reverse_channels.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/selftimed_throughput.h \ -+ ../../analysis/throughput/../../base/timed/graph.h \ -+ ../../generate/generate.h ../../generate/../csdf.h \ -+ ../../output/buffer_throughput/buffy.h \ -+ ../../output/buffer_throughput/../../csdf.h ../../output/xml/xml.h \ -+ ../../output/xml/../../csdf.h ../../transform/to_sdf/sdftocsdf.h \ -+ ../../transform/to_sdf/../../csdf.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/csdf_base_timed_actor.d sdf3_custom/sdf3/build/work/Linux/dep/csdf_base_timed_actor.d ---- sdf3-backup/sdf3/build/work/Linux/dep/csdf_base_timed_actor.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/csdf_base_timed_actor.d 2022-01-07 15:15:17.878564492 +0800 -@@ -0,0 +1,56 @@ -+csdf_base_timed_actor.o: actor.cc actor.h ../untimed/graph.h ../untimed/channel.h \ -+ ../untimed/actor.h ../untimed/port.h ../untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ ../untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../untimed/rate.h timed_types.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/csdf_base_timed_channel.d sdf3_custom/sdf3/build/work/Linux/dep/csdf_base_timed_channel.d ---- sdf3-backup/sdf3/build/work/Linux/dep/csdf_base_timed_channel.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/csdf_base_timed_channel.d 2022-01-07 15:15:20.221910360 +0800 -@@ -0,0 +1,56 @@ -+csdf_base_timed_channel.o: channel.cc channel.h ../untimed/graph.h ../untimed/channel.h \ -+ ../untimed/actor.h ../untimed/port.h ../untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ ../untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../untimed/rate.h timed_types.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/csdf_base_timed_graph.d sdf3_custom/sdf3/build/work/Linux/dep/csdf_base_timed_graph.d ---- sdf3-backup/sdf3/build/work/Linux/dep/csdf_base_timed_graph.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/csdf_base_timed_graph.d 2022-01-07 15:15:21.375249900 +0800 -@@ -0,0 +1,57 @@ -+csdf_base_timed_graph.o: graph.cc graph.h channel.h ../untimed/graph.h \ -+ ../untimed/channel.h ../untimed/actor.h ../untimed/port.h \ -+ ../untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ ../untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../untimed/rate.h timed_types.h actor.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/csdf_base_untimed_actor.d sdf3_custom/sdf3/build/work/Linux/dep/csdf_base_untimed_actor.d ---- sdf3-backup/sdf3/build/work/Linux/dep/csdf_base_untimed_actor.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/csdf_base_untimed_actor.d 2022-01-07 15:15:22.908591522 +0800 -@@ -0,0 +1,55 @@ -+csdf_base_untimed_actor.o: actor.cc actor.h port.h component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ ../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ rate.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/csdf_base_untimed_channel.d sdf3_custom/sdf3/build/work/Linux/dep/csdf_base_untimed_channel.d ---- sdf3-backup/sdf3/build/work/Linux/dep/csdf_base_untimed_channel.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/csdf_base_untimed_channel.d 2022-01-07 15:15:23.998597441 +0800 -@@ -0,0 +1,55 @@ -+csdf_base_untimed_channel.o: channel.cc channel.h actor.h port.h component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ ../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ rate.h graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/csdf_base_untimed_component.d sdf3_custom/sdf3/build/work/Linux/dep/csdf_base_untimed_component.d ---- sdf3-backup/sdf3/build/work/Linux/dep/csdf_base_untimed_component.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/csdf_base_untimed_component.d 2022-01-07 15:15:25.038603111 +0800 -@@ -0,0 +1,54 @@ -+csdf_base_untimed_component.o: component.cc component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ ../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/csdf_base_untimed_graph.d sdf3_custom/sdf3/build/work/Linux/dep/csdf_base_untimed_graph.d ---- sdf3-backup/sdf3/build/work/Linux/dep/csdf_base_untimed_graph.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/csdf_base_untimed_graph.d 2022-01-07 15:15:25.888607759 +0800 -@@ -0,0 +1,55 @@ -+csdf_base_untimed_graph.o: graph.cc graph.h channel.h actor.h port.h component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ ../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ rate.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/csdf_base_untimed_port.d sdf3_custom/sdf3/build/work/Linux/dep/csdf_base_untimed_port.d ---- sdf3-backup/sdf3/build/work/Linux/dep/csdf_base_untimed_port.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/csdf_base_untimed_port.d 2022-01-07 15:15:27.485283195 +0800 -@@ -0,0 +1,55 @@ -+csdf_base_untimed_port.o: port.cc port.h component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ ../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ rate.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/csdf_generate_generate.d sdf3_custom/sdf3/build/work/Linux/dep/csdf_generate_generate.d ---- sdf3-backup/sdf3/build/work/Linux/dep/csdf_generate_generate.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/csdf_generate_generate.d 2022-01-07 15:15:28.778623664 +0800 -@@ -0,0 +1,233 @@ -+csdf_generate_generate.o: generate.cc generate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/sdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/acyclic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/connected.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/cycle.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/dfs.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/check.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffersizing.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/bounded_buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/dependency_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/latency.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed_minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/single_processor_random_staticorder.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcmgraph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/selftimed_throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/tdma_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/deadlock.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/comm_trace.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/mpexplore.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/generate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/buffy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/dot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/hapi.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/html.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/flow.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/scheduling.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/autoconc.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/buffersize.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/sdftoapg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/hsdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/unfold.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/reverse_channels.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/../../base/timed/graph.h \ -+ ../csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/rate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/actor.h \ -+ ../base/algo/components.h ../base/algo/../../csdf.h ../base/algo/dfs.h \ -+ ../analysis/analysis.h ../analysis/buffersizing/buffersizing.h \ -+ ../analysis/buffersizing/buffer.h \ -+ ../analysis/buffersizing/../../base/timed/graph.h \ -+ ../analysis/throughput/throughput.h \ -+ ../analysis/throughput/selftimed_throughput.h \ -+ ../analysis/throughput/../../base/timed/graph.h ../generate/generate.h \ -+ ../output/buffer_throughput/buffy.h \ -+ ../output/buffer_throughput/../../csdf.h ../output/xml/xml.h \ -+ ../output/xml/../../csdf.h ../transform/to_sdf/sdftocsdf.h \ -+ ../transform/to_sdf/../../csdf.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/csdf_output_buffer_throughput_buffy.d sdf3_custom/sdf3/build/work/Linux/dep/csdf_output_buffer_throughput_buffy.d ---- sdf3-backup/sdf3/build/work/Linux/dep/csdf_output_buffer_throughput_buffy.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/csdf_output_buffer_throughput_buffy.d 2022-01-07 15:15:30.708634369 +0800 -@@ -0,0 +1,233 @@ -+csdf_output_buffer_throughput_buffy.o: buffy.cc buffy.h ../../csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/rate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/actor.h \ -+ ../../base/algo/components.h ../../base/algo/../../csdf.h \ -+ ../../base/algo/dfs.h ../../analysis/analysis.h \ -+ ../../analysis/buffersizing/buffersizing.h \ -+ ../../analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/sdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/acyclic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/connected.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/cycle.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/dfs.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/check.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffersizing.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/bounded_buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/dependency_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/latency.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed_minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/single_processor_random_staticorder.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcmgraph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/selftimed_throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/tdma_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/deadlock.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/comm_trace.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/mpexplore.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/generate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/buffy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/dot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/hapi.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/html.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/flow.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/scheduling.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/autoconc.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/buffersize.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/sdftoapg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/hsdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/unfold.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/reverse_channels.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/selftimed_throughput.h \ -+ ../../analysis/throughput/../../base/timed/graph.h \ -+ ../../generate/generate.h ../../generate/../csdf.h \ -+ ../../output/buffer_throughput/buffy.h ../../output/xml/xml.h \ -+ ../../output/xml/../../csdf.h ../../transform/to_sdf/sdftocsdf.h \ -+ ../../transform/to_sdf/../../csdf.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/csdf_output_xml_xml.d sdf3_custom/sdf3/build/work/Linux/dep/csdf_output_xml_xml.d ---- sdf3-backup/sdf3/build/work/Linux/dep/csdf_output_xml_xml.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/csdf_output_xml_xml.d 2022-01-07 15:15:33.975319311 +0800 -@@ -0,0 +1,233 @@ -+csdf_output_xml_xml.o: xml.cc xml.h ../../csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/rate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/actor.h \ -+ ../../base/algo/components.h ../../base/algo/../../csdf.h \ -+ ../../base/algo/dfs.h ../../analysis/analysis.h \ -+ ../../analysis/buffersizing/buffersizing.h \ -+ ../../analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/sdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/acyclic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/connected.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/cycle.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/dfs.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/check.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffersizing.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/bounded_buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/dependency_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/latency.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed_minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/single_processor_random_staticorder.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcmgraph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/selftimed_throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/tdma_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/deadlock.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/comm_trace.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/mpexplore.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/generate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/buffy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/dot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/hapi.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/html.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/flow.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/scheduling.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/autoconc.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/buffersize.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/sdftoapg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/hsdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/unfold.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/reverse_channels.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/selftimed_throughput.h \ -+ ../../analysis/throughput/../../base/timed/graph.h \ -+ ../../generate/generate.h ../../generate/../csdf.h \ -+ ../../output/buffer_throughput/buffy.h \ -+ ../../output/buffer_throughput/../../csdf.h ../../output/xml/xml.h \ -+ ../../transform/to_sdf/sdftocsdf.h ../../transform/to_sdf/../../csdf.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/csdf_tools_sdf3analysis_sdf3analysis.d sdf3_custom/sdf3/build/work/Linux/dep/csdf_tools_sdf3analysis_sdf3analysis.d ---- sdf3-backup/sdf3/build/work/Linux/dep/csdf_tools_sdf3analysis_sdf3analysis.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/csdf_tools_sdf3analysis_sdf3analysis.d 2022-01-07 15:15:42.298700091 +0800 -@@ -0,0 +1,240 @@ -+csdf_tools_sdf3analysis_sdf3analysis.o: sdf3analysis.cc sdf3analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/sdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/acyclic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/connected.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/cycle.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/dfs.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/check.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffersizing.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/bounded_buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/dependency_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/latency.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed_minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/single_processor_random_staticorder.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcmgraph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/selftimed_throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/tdma_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/deadlock.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/comm_trace.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/mpexplore.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/generate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/buffy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/dot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/hapi.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/html.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/flow.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/scheduling.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/autoconc.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/buffersize.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/sdftoapg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/hsdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/unfold.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/reverse_channels.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/rate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/algo/../../csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/algo/dfs.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/analysis/buffersizing/buffersizing.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/analysis/buffersizing/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/analysis/throughput/throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/analysis/throughput/selftimed_throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/analysis/throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/generate/generate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/generate/../csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/output/buffer_throughput/buffy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/output/buffer_throughput/../../csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/output/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/output/xml/../../csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/transform/to_sdf/sdftocsdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/transform/to_sdf/../../csdf.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/csdf_tools_sdf3generate_sdf3generate.d sdf3_custom/sdf3/build/work/Linux/dep/csdf_tools_sdf3generate_sdf3generate.d ---- sdf3-backup/sdf3/build/work/Linux/dep/csdf_tools_sdf3generate_sdf3generate.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/csdf_tools_sdf3generate_sdf3generate.d 2022-01-07 15:15:44.178710979 +0800 -@@ -0,0 +1,234 @@ -+csdf_tools_sdf3generate_sdf3generate.o: sdf3generate.cc sdf3generate.h ../../csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/rate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/actor.h \ -+ ../../base/algo/components.h ../../base/algo/../../csdf.h \ -+ ../../base/algo/dfs.h ../../analysis/analysis.h \ -+ ../../analysis/buffersizing/buffersizing.h \ -+ ../../analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/sdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/acyclic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/connected.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/cycle.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/dfs.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/check.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffersizing.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/bounded_buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/dependency_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/latency.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed_minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/single_processor_random_staticorder.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcmgraph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/selftimed_throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/tdma_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/deadlock.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/comm_trace.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/mpexplore.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/generate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/buffy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/dot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/hapi.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/html.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/flow.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/scheduling.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/autoconc.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/buffersize.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/sdftoapg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/hsdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/unfold.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/reverse_channels.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/selftimed_throughput.h \ -+ ../../analysis/throughput/../../base/timed/graph.h \ -+ ../../generate/generate.h ../../generate/../csdf.h \ -+ ../../output/buffer_throughput/buffy.h \ -+ ../../output/buffer_throughput/../../csdf.h ../../output/xml/xml.h \ -+ ../../output/xml/../../csdf.h ../../transform/to_sdf/sdftocsdf.h \ -+ ../../transform/to_sdf/../../csdf.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/csdf_tools_sdf3print_sdf3print.d sdf3_custom/sdf3/build/work/Linux/dep/csdf_tools_sdf3print_sdf3print.d ---- sdf3-backup/sdf3/build/work/Linux/dep/csdf_tools_sdf3print_sdf3print.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/csdf_tools_sdf3print_sdf3print.d 2022-01-07 15:15:45.955387993 +0800 -@@ -0,0 +1,240 @@ -+csdf_tools_sdf3print_sdf3print.o: sdf3print.cc sdf3print.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/sdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/acyclic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/connected.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/cycle.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/dfs.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/check.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffersizing.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/bounded_buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/dependency_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/latency.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed_minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/single_processor_random_staticorder.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcmgraph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/selftimed_throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/tdma_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/deadlock.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/comm_trace.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/mpexplore.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/generate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/buffy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/dot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/hapi.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/html.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/flow.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/scheduling.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/autoconc.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/buffersize.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/sdftoapg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/hsdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/unfold.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/reverse_channels.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/rate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/algo/../../csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/algo/dfs.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/analysis/buffersizing/buffersizing.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/analysis/buffersizing/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/analysis/throughput/throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/analysis/throughput/selftimed_throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/analysis/throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/generate/generate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/generate/../csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/output/buffer_throughput/buffy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/output/buffer_throughput/../../csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/output/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/output/xml/../../csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/transform/to_sdf/sdftocsdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/transform/to_sdf/../../csdf.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/csdf_tools_sdf3transform_sdf3transform.d sdf3_custom/sdf3/build/work/Linux/dep/csdf_tools_sdf3transform_sdf3transform.d ---- sdf3-backup/sdf3/build/work/Linux/dep/csdf_tools_sdf3transform_sdf3transform.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/csdf_tools_sdf3transform_sdf3transform.d 2022-01-07 15:15:47.722065007 +0800 -@@ -0,0 +1,308 @@ -+csdf_tools_sdf3transform_sdf3transform.o: sdf3transform.cc sdf3transform.h ../../csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/rate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/actor.h \ -+ ../../base/algo/components.h ../../base/algo/../../csdf.h \ -+ ../../base/algo/dfs.h ../../analysis/analysis.h \ -+ ../../analysis/buffersizing/buffersizing.h \ -+ ../../analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/sdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/acyclic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/connected.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/cycle.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/dfs.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/check.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffersizing.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/bounded_buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/dependency_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/latency.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed_minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/single_processor_random_staticorder.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcmgraph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/selftimed_throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/tdma_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/deadlock.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/comm_trace.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/mpexplore.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/generate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/buffy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/dot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/hapi.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/html.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/flow.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/scheduling.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/autoconc.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/buffersize.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/sdftoapg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/hsdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/unfold.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/reverse_channels.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/selftimed_throughput.h \ -+ ../../analysis/throughput/../../base/timed/graph.h \ -+ ../../generate/generate.h ../../generate/../csdf.h \ -+ ../../output/buffer_throughput/buffy.h \ -+ ../../output/buffer_throughput/../../csdf.h ../../output/xml/xml.h \ -+ ../../output/xml/../../csdf.h ../../transform/to_sdf/sdftocsdf.h \ -+ ../../transform/to_sdf/../../csdf.h \ -+ ../../transform/to_wc_fsm_sadf/csdftowcfsmsadf.h \ -+ ../../transform/to_wc_fsm_sadf/../../csdf.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/fsmsadf.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/base/actor.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/base/port.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/base/type.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/base/component.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/base/../../base/base.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/base/memorytype.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/base/scenario.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/base/channel.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/base/actor.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/base/graph.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/base/../../sdf/sdf.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/base/channel.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/base/fsm.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/base/port.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/analysis/analysis.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/analysis/throughput/throughput.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/analysis/throughput/scenariograph.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/analysis/throughput/../../base/graph.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/analysis/throughput/fsm_ref_schedule.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/analysis/throughput/fsm_scenario_transitions.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/analysis/throughput/statespace.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/analysis/throughput/../../base/fsm.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/analysis/throughput/maxplusautomaton.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/analysis/maxplus/mpexplore.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/analysis/maxplus/../base/repetition_vector.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/analysis/maxplus/../base/../../../base/base.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/analysis/maxplus/../base/../../base/graph.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/analysis/maxplus/../../base/graph.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/generate/generate.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/generate/../base/graph.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/flow.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/memory.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/binding.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/graph_binding.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/virtual_platform/base/flow.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/virtual_platform/base/../../base_platform/base/flow.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/compsoc_platform/base/flow.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/compsoc_platform/base/../../base_platform/base/flow.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/mamps_platform/base/flow.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/resource_allocation/flow/mamps_platform/base/../../base_platform/base/flow.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/transform/transform.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/transform/worst-case/worst-case.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/transform/worst-case/../../base/graph.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/transform/auto-concurrency/auto-concurrency.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/transform/auto-concurrency/../../base/graph.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/output/html/html.h \ -+ ../../transform/to_wc_fsm_sadf/../../../fsmsadf/output/html/../../resource_allocation/flow/base_platform/base/flow.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/csdf_transform_to_sdf_sdftocsdf.d sdf3_custom/sdf3/build/work/Linux/dep/csdf_transform_to_sdf_sdftocsdf.d ---- sdf3-backup/sdf3/build/work/Linux/dep/csdf_transform_to_sdf_sdftocsdf.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/csdf_transform_to_sdf_sdftocsdf.d 2022-01-07 15:15:36.088664573 +0800 -@@ -0,0 +1,234 @@ -+csdf_transform_to_sdf_sdftocsdf.o: sdftocsdf.cc sdftocsdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/sdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/acyclic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/connected.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/cycle.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/dfs.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/check.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffersizing.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/bounded_buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/dependency_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/latency.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed_minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/single_processor_random_staticorder.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcmgraph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/selftimed_throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/tdma_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/deadlock.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/comm_trace.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/mpexplore.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/generate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/buffy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/dot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/hapi.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/html.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/flow.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/scheduling.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/autoconc.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/buffersize.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/sdftoapg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/hsdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/unfold.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/reverse_channels.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/../../base/timed/graph.h \ -+ ../../csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/rate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/actor.h \ -+ ../../base/algo/components.h ../../base/algo/../../csdf.h \ -+ ../../base/algo/dfs.h ../../analysis/analysis.h \ -+ ../../analysis/buffersizing/buffersizing.h \ -+ ../../analysis/buffersizing/buffer.h \ -+ ../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/selftimed_throughput.h \ -+ ../../analysis/throughput/../../base/timed/graph.h \ -+ ../../generate/generate.h ../../generate/../csdf.h \ -+ ../../output/buffer_throughput/buffy.h \ -+ ../../output/buffer_throughput/../../csdf.h ../../output/xml/xml.h \ -+ ../../output/xml/../../csdf.h ../../transform/to_sdf/sdftocsdf.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/csdf_transform_to_wc_fsm_sadf_csdftowcfsmsadf.d sdf3_custom/sdf3/build/work/Linux/dep/csdf_transform_to_wc_fsm_sadf_csdftowcfsmsadf.d ---- sdf3-backup/sdf3/build/work/Linux/dep/csdf_transform_to_wc_fsm_sadf_csdftowcfsmsadf.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/csdf_transform_to_wc_fsm_sadf_csdftowcfsmsadf.d 2022-01-07 15:15:37.738673942 +0800 -@@ -0,0 +1,299 @@ -+csdf_transform_to_wc_fsm_sadf_csdftowcfsmsadf.o: csdftowcfsmsadf.cc csdftowcfsmsadf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/sdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/acyclic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/connected.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/cycle.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/dfs.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/check.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffersizing.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/bounded_buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/dependency_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/latency.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed_minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/single_processor_random_staticorder.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcmgraph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/selftimed_throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/tdma_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/deadlock.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/comm_trace.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/mpexplore.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/generate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/buffy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/dot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/hapi.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/html.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/flow.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/scheduling.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/autoconc.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/buffersize.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/sdftoapg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/hsdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/unfold.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/reverse_channels.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/../../base/timed/graph.h \ -+ ../../csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/rate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/actor.h \ -+ ../../base/algo/components.h ../../base/algo/../../csdf.h \ -+ ../../base/algo/dfs.h ../../analysis/analysis.h \ -+ ../../analysis/buffersizing/buffersizing.h \ -+ ../../analysis/buffersizing/buffer.h \ -+ ../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/selftimed_throughput.h \ -+ ../../analysis/throughput/../../base/timed/graph.h \ -+ ../../generate/generate.h ../../generate/../csdf.h \ -+ ../../output/buffer_throughput/buffy.h \ -+ ../../output/buffer_throughput/../../csdf.h ../../output/xml/xml.h \ -+ ../../output/xml/../../csdf.h ../../transform/to_sdf/sdftocsdf.h \ -+ ../../transform/to_sdf/../../csdf.h ../../../fsmsadf/fsmsadf.h \ -+ ../../../fsmsadf/base/actor.h ../../../fsmsadf/base/port.h \ -+ ../../../fsmsadf/base/type.h ../../../fsmsadf/base/component.h \ -+ ../../../fsmsadf/base/../../base/base.h \ -+ ../../../fsmsadf/base/memorytype.h ../../../fsmsadf/base/scenario.h \ -+ ../../../fsmsadf/base/channel.h ../../../fsmsadf/base/actor.h \ -+ ../../../fsmsadf/base/graph.h ../../../fsmsadf/base/../../sdf/sdf.h \ -+ ../../../fsmsadf/base/channel.h ../../../fsmsadf/base/fsm.h \ -+ ../../../fsmsadf/base/port.h ../../../fsmsadf/analysis/analysis.h \ -+ ../../../fsmsadf/analysis/throughput/throughput.h \ -+ ../../../fsmsadf/analysis/throughput/scenariograph.h \ -+ ../../../fsmsadf/analysis/throughput/../../base/graph.h \ -+ ../../../fsmsadf/analysis/throughput/fsm_ref_schedule.h \ -+ ../../../fsmsadf/analysis/throughput/fsm_scenario_transitions.h \ -+ ../../../fsmsadf/analysis/throughput/statespace.h \ -+ ../../../fsmsadf/analysis/throughput/../../base/fsm.h \ -+ ../../../fsmsadf/analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../../fsmsadf/analysis/throughput/maxplusautomaton.h \ -+ ../../../fsmsadf/analysis/maxplus/mpexplore.h \ -+ ../../../fsmsadf/analysis/maxplus/../base/repetition_vector.h \ -+ ../../../fsmsadf/analysis/maxplus/../base/../../../base/base.h \ -+ ../../../fsmsadf/analysis/maxplus/../base/../../base/graph.h \ -+ ../../../fsmsadf/analysis/maxplus/../../base/graph.h \ -+ ../../../fsmsadf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ ../../../fsmsadf/generate/generate.h \ -+ ../../../fsmsadf/generate/../base/graph.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/flow.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/memory.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/binding.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/graph_binding.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../../../fsmsadf/resource_allocation/flow/virtual_platform/base/flow.h \ -+ ../../../fsmsadf/resource_allocation/flow/virtual_platform/base/../../base_platform/base/flow.h \ -+ ../../../fsmsadf/resource_allocation/flow/compsoc_platform/base/flow.h \ -+ ../../../fsmsadf/resource_allocation/flow/compsoc_platform/base/../../base_platform/base/flow.h \ -+ ../../../fsmsadf/resource_allocation/flow/mamps_platform/base/flow.h \ -+ ../../../fsmsadf/resource_allocation/flow/mamps_platform/base/../../base_platform/base/flow.h \ -+ ../../../fsmsadf/transform/transform.h \ -+ ../../../fsmsadf/transform/worst-case/worst-case.h \ -+ ../../../fsmsadf/transform/worst-case/../../base/graph.h \ -+ ../../../fsmsadf/transform/auto-concurrency/auto-concurrency.h \ -+ ../../../fsmsadf/transform/auto-concurrency/../../base/graph.h \ -+ ../../../fsmsadf/output/html/html.h \ -+ ../../../fsmsadf/output/html/../../resource_allocation/flow/base_platform/base/flow.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_analysis_base_repetition_vector.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_analysis_base_repetition_vector.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_analysis_base_repetition_vector.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_analysis_base_repetition_vector.d 2022-01-07 15:12:06.484603414 +0800 -@@ -0,0 +1,201 @@ -+fsmsadf_analysis_base_repetition_vector.o: repetition_vector.cc repetition_vector.h \ -+ ../../../base/base.h ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h \ -+ ../../base/graph.h ../../base/../../sdf/sdf.h \ -+ ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/actor.h ../../base/port.h \ -+ ../../base/type.h ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/memorytype.h ../../base/scenario.h ../../base/fsm.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_analysis_maxplus_mpexplore.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_analysis_maxplus_mpexplore.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_analysis_maxplus_mpexplore.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_analysis_maxplus_mpexplore.d 2022-01-07 15:12:08.507938749 +0800 -@@ -0,0 +1,212 @@ -+fsmsadf_analysis_maxplus_mpexplore.o: mpexplore.cc mpexplore.h ../base/repetition_vector.h \ -+ ../base/../../../base/base.h ../base/../../../base/exception/exception.h \ -+ ../base/../../../base/exception/../string/cstring.h \ -+ ../base/../../../base/exception/../string/../basic_types.h \ -+ ../base/../../../base/exception/../basic_types.h \ -+ ../base/../../../base/fraction/fraction.h \ -+ ../base/../../../base/fraction/../basic_types.h \ -+ ../base/../../../base/fraction/../math/cmath.h \ -+ ../base/../../../base/fraction/../string/cstring.h \ -+ ../base/../../../base/xml/xml.h \ -+ ../base/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../base/../../../base/tempfile/tempfile.h \ -+ ../base/../../../base/tempfile/../string/cstring.h \ -+ ../base/../../../base/math/cmath.h ../base/../../../base/random/random.h \ -+ ../base/../../../base/sort/sort.h ../base/../../../base/time/time.h \ -+ ../base/../../../base/time/../basic_types.h \ -+ ../base/../../../base/time/../string/cstring.h \ -+ ../base/../../../base/log/log.h \ -+ ../base/../../../base/log/../string/cstring.h \ -+ ../base/../../../base/log/../basic_types.h \ -+ ../base/../../../base/sequence/sequence.h \ -+ ../base/../../../base/sequence/../basic_types.h \ -+ ../base/../../../base/matrix/matrix.h \ -+ ../base/../../../base/matrix/../basic_types.h \ -+ ../base/../../../base/maxplus/maxplus.h \ -+ ../base/../../../base/maxplus/mptype.h \ -+ ../base/../../../base/maxplus/../basic_types.h \ -+ ../base/../../../base/maxplus/../string/cstring.h \ -+ ../base/../../../base/maxplus/mpmatrix.h \ -+ ../base/../../../base/lookup/clookup.h ../base/../../base/graph.h \ -+ ../base/../../base/../../sdf/sdf.h \ -+ ../base/../../base/../../sdf/base/untimed/graph.h \ -+ ../base/../../base/../../sdf/base/untimed/channel.h \ -+ ../base/../../base/../../sdf/base/untimed/actor.h \ -+ ../base/../../base/../../sdf/base/untimed/port.h \ -+ ../base/../../base/../../sdf/base/untimed/component.h \ -+ ../base/../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../base/../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../base/../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../base/../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../base/../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../base/../../base/../../sdf/base/timed/graph.h \ -+ ../base/../../base/../../sdf/base/timed/channel.h \ -+ ../base/../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../base/../../base/../../sdf/base/timed/timed_types.h \ -+ ../base/../../base/../../sdf/base/timed/actor.h \ -+ ../base/../../base/../../sdf/base/algo/acyclic.h \ -+ ../base/../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../base/../../base/../../sdf/base/algo/components.h \ -+ ../base/../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../base/../../base/../../sdf/base/algo/connected.h \ -+ ../base/../../base/../../sdf/base/algo/cycle.h \ -+ ../base/../../base/../../sdf/base/algo/dfs.h \ -+ ../base/../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../base/../../base/../../sdf/base/hsdf/check.h \ -+ ../base/../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../base/../../base/../../sdf/analysis/analysis.h \ -+ ../base/../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../base/../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../base/../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../base/../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../base/../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../base/../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../base/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../base/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../base/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../base/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../base/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../base/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../base/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../base/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../base/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../base/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../base/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../base/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../base/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../base/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../base/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../base/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../base/../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../base/../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../base/../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../base/../../base/../../sdf/analysis/latency/latency.h \ -+ ../base/../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../base/../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../base/../../base/../../sdf/analysis/latency/minimal.h \ -+ ../base/../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../base/../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../base/../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../base/../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../base/../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../base/../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../base/../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../base/../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../base/../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../base/../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../base/../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../base/../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../base/../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../base/../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../base/../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../base/../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../base/../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../base/../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../base/../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../base/../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../base/../../base/../../sdf/generate/generate.h \ -+ ../base/../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../base/../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../base/../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../base/../../base/../../sdf/output/dot/dot.h \ -+ ../base/../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../base/../../base/../../sdf/output/hapi/hapi.h \ -+ ../base/../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../base/../../base/../../sdf/output/html/html.h \ -+ ../base/../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../base/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../base/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../base/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../base/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../base/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../base/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../base/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../base/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../base/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../base/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../base/../../base/../../sdf/output/schedule/schedule.h \ -+ ../base/../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../base/../../base/../../sdf/output/xml/xml.h \ -+ ../base/../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../base/../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../base/../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../base/../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../base/../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../base/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../base/../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../base/../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../base/../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../base/../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../base/../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../base/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../base/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../base/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../base/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../base/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../base/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../base/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../base/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../base/../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../base/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../base/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../base/../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../base/../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../base/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../base/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../base/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../base/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../base/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../base/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../base/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../base/../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../base/../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../base/../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../base/../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../base/../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../base/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../base/../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../base/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../base/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../base/../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../base/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../base/../../base/../../sdf/transform/model/autoconc.h \ -+ ../base/../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../base/../../base/../../sdf/transform/model/buffersize.h \ -+ ../base/../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../base/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../base/../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../base/../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../base/../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../base/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../base/../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../base/../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../base/../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../base/../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../base/../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../base/../../base/channel.h ../base/../../base/actor.h \ -+ ../base/../../base/port.h ../base/../../base/type.h \ -+ ../base/../../base/component.h ../base/../../base/../../base/base.h \ -+ ../base/../../base/memorytype.h ../base/../../base/scenario.h \ -+ ../base/../../base/fsm.h ../../base/graph.h \ -+ ../../../base/maxplus/maxplus.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_analysis_throughput_fsm_ref_schedule.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_analysis_throughput_fsm_ref_schedule.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_analysis_throughput_fsm_ref_schedule.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_analysis_throughput_fsm_ref_schedule.d 2022-01-07 15:12:11.784608892 +0800 -@@ -0,0 +1,219 @@ -+fsmsadf_analysis_throughput_fsm_ref_schedule.o: fsm_ref_schedule.cc \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcmgraph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/../untimed/../../../base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/actor.h \ -+ scenariograph.h ../../base/graph.h ../../base/../../sdf/sdf.h \ -+ ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/actor.h ../../base/port.h \ -+ ../../base/type.h ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/memorytype.h ../../base/scenario.h ../../base/fsm.h \ -+ fsm_ref_schedule.h ../../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../../sdf/analysis/mcm/mcmyto.h ../../../sdf/analysis/mcm/mcmgraph.h \ -+ ../maxplus/mpexplore.h ../maxplus/../base/repetition_vector.h \ -+ ../maxplus/../base/../../../base/base.h \ -+ ../maxplus/../base/../../base/graph.h ../maxplus/../../base/graph.h \ -+ ../maxplus/../../../base/maxplus/maxplus.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_analysis_throughput_fsm_scenario_transitions.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_analysis_throughput_fsm_scenario_transitions.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_analysis_throughput_fsm_scenario_transitions.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_analysis_throughput_fsm_scenario_transitions.d 2022-01-07 15:12:14.147944913 +0800 -@@ -0,0 +1,216 @@ -+fsmsadf_analysis_throughput_fsm_scenario_transitions.o: fsm_scenario_transitions.cc \ -+ fsm_ref_schedule.h ../../base/graph.h ../../base/../../sdf/sdf.h \ -+ ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/exception.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/fraction.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/../../sdf/base/untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/../../sdf/base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/math/cmath.h \ -+ ../../base/../../sdf/base/untimed/../../../base/random/random.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sort/sort.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/time.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/log.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sequence/sequence.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/matrix/matrix.h \ -+ ../../base/../../sdf/base/untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/mptype.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/../../sdf/base/untimed/../../../base/lookup/clookup.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/actor.h ../../base/port.h \ -+ ../../base/type.h ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/memorytype.h ../../base/scenario.h ../../base/fsm.h \ -+ ../../../sdf/analysis/mcm/mcmgraph.h ../maxplus/mpexplore.h \ -+ ../maxplus/../base/repetition_vector.h \ -+ ../maxplus/../base/../../../base/base.h \ -+ ../maxplus/../base/../../base/graph.h ../maxplus/../../base/graph.h \ -+ ../maxplus/../../../base/maxplus/maxplus.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_analysis_throughput_maxplusautomaton.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_analysis_throughput_maxplusautomaton.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_analysis_throughput_maxplusautomaton.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_analysis_throughput_maxplusautomaton.d 2022-01-07 15:12:16.554614473 +0800 -@@ -0,0 +1,219 @@ -+fsmsadf_analysis_throughput_maxplusautomaton.o: maxplusautomaton.cc maxplusautomaton.h \ -+ ../../base/graph.h ../../base/../../sdf/sdf.h \ -+ ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/exception.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/fraction.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/../../sdf/base/untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/../../sdf/base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/math/cmath.h \ -+ ../../base/../../sdf/base/untimed/../../../base/random/random.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sort/sort.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/time.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/log.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sequence/sequence.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/matrix/matrix.h \ -+ ../../base/../../sdf/base/untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/mptype.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/../../sdf/base/untimed/../../../base/lookup/clookup.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/actor.h ../../base/port.h \ -+ ../../base/type.h ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/memorytype.h ../../base/scenario.h ../../base/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcmgraph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcmyto.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcmgraph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_analysis_throughput_scenariograph.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_analysis_throughput_scenariograph.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_analysis_throughput_scenariograph.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_analysis_throughput_scenariograph.d 2022-01-07 15:12:20.104619020 +0800 -@@ -0,0 +1,214 @@ -+fsmsadf_analysis_throughput_scenariograph.o: scenariograph.cc scenariograph.h ../../base/graph.h \ -+ ../../base/../../sdf/sdf.h ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/exception.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/fraction.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/../../sdf/base/untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/../../sdf/base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/math/cmath.h \ -+ ../../base/../../sdf/base/untimed/../../../base/random/random.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sort/sort.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/time.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/log.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sequence/sequence.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/matrix/matrix.h \ -+ ../../base/../../sdf/base/untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/mptype.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/../../sdf/base/untimed/../../../base/lookup/clookup.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/actor.h ../../base/port.h \ -+ ../../base/type.h ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/memorytype.h ../../base/scenario.h ../../base/fsm.h \ -+ ../maxplus/mpexplore.h ../maxplus/../base/repetition_vector.h \ -+ ../maxplus/../base/../../../base/base.h \ -+ ../maxplus/../base/../../base/graph.h ../maxplus/../../base/graph.h \ -+ ../maxplus/../../../base/maxplus/maxplus.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_analysis_throughput_statespace.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_analysis_throughput_statespace.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_analysis_throughput_statespace.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_analysis_throughput_statespace.d 2022-01-07 15:12:22.624622455 +0800 -@@ -0,0 +1,216 @@ -+fsmsadf_analysis_throughput_statespace.o: statespace.cc statespace.h ../../base/graph.h \ -+ ../../base/../../sdf/sdf.h ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/exception.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/fraction.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/../../sdf/base/untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/../../sdf/base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/math/cmath.h \ -+ ../../base/../../sdf/base/untimed/../../../base/random/random.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sort/sort.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/time.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/log.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sequence/sequence.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/matrix/matrix.h \ -+ ../../base/../../sdf/base/untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/mptype.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/../../sdf/base/untimed/../../../base/lookup/clookup.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/actor.h ../../base/port.h \ -+ ../../base/type.h ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/memorytype.h ../../base/scenario.h ../../base/fsm.h \ -+ ../../base/fsm.h thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcmgraph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_analysis_throughput_thrutils.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_analysis_throughput_thrutils.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_analysis_throughput_thrutils.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_analysis_throughput_thrutils.d 2022-01-07 15:12:25.721293570 +0800 -@@ -0,0 +1,215 @@ -+fsmsadf_analysis_throughput_thrutils.o: thrutils.cc thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ ../../base/graph.h ../../base/../../sdf/sdf.h \ -+ ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/exception.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/fraction.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/../../sdf/base/untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/../../sdf/base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/math/cmath.h \ -+ ../../base/../../sdf/base/untimed/../../../base/random/random.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sort/sort.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/time.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/log.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sequence/sequence.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/matrix/matrix.h \ -+ ../../base/../../sdf/base/untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/../../sdf/base/untimed/../../../base/lookup/clookup.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/actor.h ../../base/port.h \ -+ ../../base/type.h ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/memorytype.h ../../base/scenario.h ../../base/fsm.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_base_actor.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_base_actor.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_base_actor.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_base_actor.d 2022-01-07 15:11:49.704591173 +0800 -@@ -0,0 +1,180 @@ -+fsmsadf_base_actor.o: actor.cc actor.h port.h type.h component.h ../../base/base.h \ -+ ../../base/exception/exception.h \ -+ ../../base/exception/../string/cstring.h \ -+ ../../base/exception/../string/../basic_types.h \ -+ ../../base/exception/../basic_types.h ../../base/fraction/fraction.h \ -+ ../../base/fraction/../basic_types.h ../../base/fraction/../math/cmath.h \ -+ ../../base/fraction/../string/cstring.h ../../base/xml/xml.h \ -+ ../../base/xml/../string/cstring.h /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h ../../base/tempfile/tempfile.h \ -+ ../../base/tempfile/../string/cstring.h ../../base/math/cmath.h \ -+ ../../base/random/random.h ../../base/sort/sort.h ../../base/time/time.h \ -+ ../../base/time/../basic_types.h ../../base/time/../string/cstring.h \ -+ ../../base/log/log.h ../../base/log/../string/cstring.h \ -+ ../../base/log/../basic_types.h ../../base/sequence/sequence.h \ -+ ../../base/sequence/../basic_types.h ../../base/matrix/matrix.h \ -+ ../../base/matrix/../basic_types.h ../../base/maxplus/maxplus.h \ -+ ../../base/maxplus/mptype.h ../../base/maxplus/../basic_types.h \ -+ ../../base/maxplus/../string/cstring.h ../../base/maxplus/mpmatrix.h \ -+ ../../base/lookup/clookup.h memorytype.h scenario.h graph.h \ -+ ../../sdf/sdf.h ../../sdf/base/untimed/graph.h \ -+ ../../sdf/base/untimed/channel.h ../../sdf/base/untimed/actor.h \ -+ ../../sdf/base/untimed/port.h ../../sdf/base/untimed/component.h \ -+ ../../sdf/base/untimed/../../../base/base.h \ -+ ../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../sdf/base/untimed/../../basic_types.h \ -+ ../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../sdf/base/timed/graph.h ../../sdf/base/timed/channel.h \ -+ ../../sdf/base/timed/../untimed/graph.h \ -+ ../../sdf/base/timed/timed_types.h ../../sdf/base/timed/actor.h \ -+ ../../sdf/base/algo/acyclic.h ../../sdf/base/algo/../untimed/graph.h \ -+ ../../sdf/base/algo/components.h \ -+ ../../sdf/base/algo/../../../base/base.h ../../sdf/base/algo/connected.h \ -+ ../../sdf/base/algo/cycle.h ../../sdf/base/algo/dfs.h \ -+ ../../sdf/base/algo/repetition_vector.h ../../sdf/base/hsdf/check.h \ -+ ../../sdf/base/hsdf/../untimed/graph.h ../../sdf/analysis/analysis.h \ -+ ../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../sdf/analysis/buffersizing/buffer.h \ -+ ../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../sdf/analysis/latency/latency.h \ -+ ../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../sdf/analysis/latency/minimal.h \ -+ ../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../sdf/analysis/latency/selftimed.h \ -+ ../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../sdf/analysis/mcm/mcm.h \ -+ ../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../sdf/analysis/throughput/throughput.h \ -+ ../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../sdf/analysis/throughput/deadlock.h \ -+ ../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../sdf/generate/generate.h ../../sdf/generate/../base/timed/graph.h \ -+ ../../sdf/output/buffer_throughput/buffy.h \ -+ ../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../sdf/output/dot/dot.h \ -+ ../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../sdf/output/hapi/hapi.h \ -+ ../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../sdf/output/html/html.h \ -+ ../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../sdf/output/schedule/schedule.h \ -+ ../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../sdf/output/xml/xml.h ../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../sdf/resource_allocation/flow/flow.h \ -+ ../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../sdf/transform/model/autoconc.h \ -+ ../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../sdf/transform/model/buffersize.h \ -+ ../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../sdf/transform/to_apg/apg.h \ -+ ../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../sdf/transform/to_apg/apg.h ../../sdf/transform/hsdf/hsdf.h \ -+ ../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../sdf/transform/hsdf/unfold.h \ -+ ../../sdf/transform/misc/reverse_channels.h \ -+ ../../sdf/transform/misc/../../base/timed/graph.h channel.h fsm.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_base_channel.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_base_channel.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_base_channel.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_base_channel.d 2022-01-07 15:11:52.684592774 +0800 -@@ -0,0 +1,180 @@ -+fsmsadf_base_channel.o: channel.cc channel.h actor.h port.h type.h component.h \ -+ ../../base/base.h ../../base/exception/exception.h \ -+ ../../base/exception/../string/cstring.h \ -+ ../../base/exception/../string/../basic_types.h \ -+ ../../base/exception/../basic_types.h ../../base/fraction/fraction.h \ -+ ../../base/fraction/../basic_types.h ../../base/fraction/../math/cmath.h \ -+ ../../base/fraction/../string/cstring.h ../../base/xml/xml.h \ -+ ../../base/xml/../string/cstring.h /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h ../../base/tempfile/tempfile.h \ -+ ../../base/tempfile/../string/cstring.h ../../base/math/cmath.h \ -+ ../../base/random/random.h ../../base/sort/sort.h ../../base/time/time.h \ -+ ../../base/time/../basic_types.h ../../base/time/../string/cstring.h \ -+ ../../base/log/log.h ../../base/log/../string/cstring.h \ -+ ../../base/log/../basic_types.h ../../base/sequence/sequence.h \ -+ ../../base/sequence/../basic_types.h ../../base/matrix/matrix.h \ -+ ../../base/matrix/../basic_types.h ../../base/maxplus/maxplus.h \ -+ ../../base/maxplus/mptype.h ../../base/maxplus/../basic_types.h \ -+ ../../base/maxplus/../string/cstring.h ../../base/maxplus/mpmatrix.h \ -+ ../../base/lookup/clookup.h memorytype.h scenario.h graph.h \ -+ ../../sdf/sdf.h ../../sdf/base/untimed/graph.h \ -+ ../../sdf/base/untimed/channel.h ../../sdf/base/untimed/actor.h \ -+ ../../sdf/base/untimed/port.h ../../sdf/base/untimed/component.h \ -+ ../../sdf/base/untimed/../../../base/base.h \ -+ ../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../sdf/base/untimed/../../basic_types.h \ -+ ../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../sdf/base/timed/graph.h ../../sdf/base/timed/channel.h \ -+ ../../sdf/base/timed/../untimed/graph.h \ -+ ../../sdf/base/timed/timed_types.h ../../sdf/base/timed/actor.h \ -+ ../../sdf/base/algo/acyclic.h ../../sdf/base/algo/../untimed/graph.h \ -+ ../../sdf/base/algo/components.h \ -+ ../../sdf/base/algo/../../../base/base.h ../../sdf/base/algo/connected.h \ -+ ../../sdf/base/algo/cycle.h ../../sdf/base/algo/dfs.h \ -+ ../../sdf/base/algo/repetition_vector.h ../../sdf/base/hsdf/check.h \ -+ ../../sdf/base/hsdf/../untimed/graph.h ../../sdf/analysis/analysis.h \ -+ ../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../sdf/analysis/buffersizing/buffer.h \ -+ ../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../sdf/analysis/latency/latency.h \ -+ ../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../sdf/analysis/latency/minimal.h \ -+ ../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../sdf/analysis/latency/selftimed.h \ -+ ../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../sdf/analysis/mcm/mcm.h \ -+ ../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../sdf/analysis/throughput/throughput.h \ -+ ../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../sdf/analysis/throughput/deadlock.h \ -+ ../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../sdf/generate/generate.h ../../sdf/generate/../base/timed/graph.h \ -+ ../../sdf/output/buffer_throughput/buffy.h \ -+ ../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../sdf/output/dot/dot.h \ -+ ../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../sdf/output/hapi/hapi.h \ -+ ../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../sdf/output/html/html.h \ -+ ../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../sdf/output/schedule/schedule.h \ -+ ../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../sdf/output/xml/xml.h ../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../sdf/resource_allocation/flow/flow.h \ -+ ../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../sdf/transform/model/autoconc.h \ -+ ../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../sdf/transform/model/buffersize.h \ -+ ../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../sdf/transform/to_apg/apg.h \ -+ ../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../sdf/transform/to_apg/apg.h ../../sdf/transform/hsdf/hsdf.h \ -+ ../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../sdf/transform/hsdf/unfold.h \ -+ ../../sdf/transform/misc/reverse_channels.h \ -+ ../../sdf/transform/misc/../../base/timed/graph.h fsm.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_base_component.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_base_component.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_base_component.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_base_component.d 2022-01-07 15:11:54.777927380 +0800 -@@ -0,0 +1,36 @@ -+fsmsadf_base_component.o: component.cc component.h ../../base/base.h \ -+ ../../base/exception/exception.h \ -+ ../../base/exception/../string/cstring.h \ -+ ../../base/exception/../string/../basic_types.h \ -+ ../../base/exception/../basic_types.h ../../base/fraction/fraction.h \ -+ ../../base/fraction/../basic_types.h ../../base/fraction/../math/cmath.h \ -+ ../../base/fraction/../string/cstring.h ../../base/xml/xml.h \ -+ ../../base/xml/../string/cstring.h /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h ../../base/tempfile/tempfile.h \ -+ ../../base/tempfile/../string/cstring.h ../../base/math/cmath.h \ -+ ../../base/random/random.h ../../base/sort/sort.h ../../base/time/time.h \ -+ ../../base/time/../basic_types.h ../../base/time/../string/cstring.h \ -+ ../../base/log/log.h ../../base/log/../string/cstring.h \ -+ ../../base/log/../basic_types.h ../../base/sequence/sequence.h \ -+ ../../base/sequence/../basic_types.h ../../base/matrix/matrix.h \ -+ ../../base/matrix/../basic_types.h ../../base/maxplus/maxplus.h \ -+ ../../base/maxplus/mptype.h ../../base/maxplus/../basic_types.h \ -+ ../../base/maxplus/../string/cstring.h ../../base/maxplus/mpmatrix.h \ -+ ../../base/lookup/clookup.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_base_fsm.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_base_fsm.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_base_fsm.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_base_fsm.d 2022-01-07 15:11:55.657927953 +0800 -@@ -0,0 +1,181 @@ -+fsmsadf_base_fsm.o: fsm.cc fsm.h component.h ../../base/base.h \ -+ ../../base/exception/exception.h \ -+ ../../base/exception/../string/cstring.h \ -+ ../../base/exception/../string/../basic_types.h \ -+ ../../base/exception/../basic_types.h ../../base/fraction/fraction.h \ -+ ../../base/fraction/../basic_types.h ../../base/fraction/../math/cmath.h \ -+ ../../base/fraction/../string/cstring.h ../../base/xml/xml.h \ -+ ../../base/xml/../string/cstring.h /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h ../../base/tempfile/tempfile.h \ -+ ../../base/tempfile/../string/cstring.h ../../base/math/cmath.h \ -+ ../../base/random/random.h ../../base/sort/sort.h ../../base/time/time.h \ -+ ../../base/time/../basic_types.h ../../base/time/../string/cstring.h \ -+ ../../base/log/log.h ../../base/log/../string/cstring.h \ -+ ../../base/log/../basic_types.h ../../base/sequence/sequence.h \ -+ ../../base/sequence/../basic_types.h ../../base/matrix/matrix.h \ -+ ../../base/matrix/../basic_types.h ../../base/maxplus/maxplus.h \ -+ ../../base/maxplus/mptype.h ../../base/maxplus/../basic_types.h \ -+ ../../base/maxplus/../string/cstring.h ../../base/maxplus/mpmatrix.h \ -+ ../../base/lookup/clookup.h scenario.h graph.h ../../sdf/sdf.h \ -+ ../../sdf/base/untimed/graph.h ../../sdf/base/untimed/channel.h \ -+ ../../sdf/base/untimed/actor.h ../../sdf/base/untimed/port.h \ -+ ../../sdf/base/untimed/component.h \ -+ ../../sdf/base/untimed/../../../base/base.h \ -+ ../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../sdf/base/untimed/../../basic_types.h \ -+ ../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../sdf/base/timed/graph.h ../../sdf/base/timed/channel.h \ -+ ../../sdf/base/timed/../untimed/graph.h \ -+ ../../sdf/base/timed/timed_types.h ../../sdf/base/timed/actor.h \ -+ ../../sdf/base/algo/acyclic.h ../../sdf/base/algo/../untimed/graph.h \ -+ ../../sdf/base/algo/components.h \ -+ ../../sdf/base/algo/../../../base/base.h ../../sdf/base/algo/connected.h \ -+ ../../sdf/base/algo/cycle.h ../../sdf/base/algo/dfs.h \ -+ ../../sdf/base/algo/repetition_vector.h ../../sdf/base/hsdf/check.h \ -+ ../../sdf/base/hsdf/../untimed/graph.h ../../sdf/analysis/analysis.h \ -+ ../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../sdf/analysis/buffersizing/buffer.h \ -+ ../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../sdf/analysis/latency/latency.h \ -+ ../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../sdf/analysis/latency/minimal.h \ -+ ../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../sdf/analysis/latency/selftimed.h \ -+ ../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../sdf/analysis/mcm/mcm.h \ -+ ../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../sdf/analysis/throughput/throughput.h \ -+ ../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../sdf/analysis/throughput/deadlock.h \ -+ ../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../sdf/generate/generate.h ../../sdf/generate/../base/timed/graph.h \ -+ ../../sdf/output/buffer_throughput/buffy.h \ -+ ../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../sdf/output/dot/dot.h \ -+ ../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../sdf/output/hapi/hapi.h \ -+ ../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../sdf/output/html/html.h \ -+ ../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../sdf/output/schedule/schedule.h \ -+ ../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../sdf/output/xml/xml.h ../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../sdf/resource_allocation/flow/flow.h \ -+ ../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../sdf/transform/model/autoconc.h \ -+ ../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../sdf/transform/model/buffersize.h \ -+ ../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../sdf/transform/to_apg/apg.h \ -+ ../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../sdf/transform/to_apg/apg.h ../../sdf/transform/hsdf/hsdf.h \ -+ ../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../sdf/transform/hsdf/unfold.h \ -+ ../../sdf/transform/misc/reverse_channels.h \ -+ ../../sdf/transform/misc/../../base/timed/graph.h channel.h actor.h \ -+ port.h type.h memorytype.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_base_graph.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_base_graph.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_base_graph.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_base_graph.d 2022-01-07 15:11:57.604595962 +0800 -@@ -0,0 +1,196 @@ -+fsmsadf_base_graph.o: graph.cc graph.h ../../sdf/sdf.h ../../sdf/base/untimed/graph.h \ -+ ../../sdf/base/untimed/channel.h ../../sdf/base/untimed/actor.h \ -+ ../../sdf/base/untimed/port.h ../../sdf/base/untimed/component.h \ -+ ../../sdf/base/untimed/../../../base/base.h \ -+ ../../sdf/base/untimed/../../../base/exception/exception.h \ -+ ../../sdf/base/untimed/../../../base/exception/../string/cstring.h \ -+ ../../sdf/base/untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../sdf/base/untimed/../../../base/exception/../basic_types.h \ -+ ../../sdf/base/untimed/../../../base/fraction/fraction.h \ -+ ../../sdf/base/untimed/../../../base/fraction/../basic_types.h \ -+ ../../sdf/base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../../sdf/base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../sdf/base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../sdf/base/untimed/../../../base/tempfile/tempfile.h \ -+ ../../sdf/base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../sdf/base/untimed/../../../base/math/cmath.h \ -+ ../../sdf/base/untimed/../../../base/random/random.h \ -+ ../../sdf/base/untimed/../../../base/sort/sort.h \ -+ ../../sdf/base/untimed/../../../base/time/time.h \ -+ ../../sdf/base/untimed/../../../base/time/../basic_types.h \ -+ ../../sdf/base/untimed/../../../base/time/../string/cstring.h \ -+ ../../sdf/base/untimed/../../../base/log/log.h \ -+ ../../sdf/base/untimed/../../../base/log/../string/cstring.h \ -+ ../../sdf/base/untimed/../../../base/log/../basic_types.h \ -+ ../../sdf/base/untimed/../../../base/sequence/sequence.h \ -+ ../../sdf/base/untimed/../../../base/sequence/../basic_types.h \ -+ ../../sdf/base/untimed/../../../base/matrix/matrix.h \ -+ ../../sdf/base/untimed/../../../base/matrix/../basic_types.h \ -+ ../../sdf/base/untimed/../../../base/maxplus/maxplus.h \ -+ ../../sdf/base/untimed/../../../base/maxplus/mptype.h \ -+ ../../sdf/base/untimed/../../../base/maxplus/../basic_types.h \ -+ ../../sdf/base/untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../sdf/base/untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../sdf/base/untimed/../../../base/lookup/clookup.h \ -+ ../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../sdf/base/untimed/../../basic_types.h \ -+ ../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../sdf/base/timed/graph.h ../../sdf/base/timed/channel.h \ -+ ../../sdf/base/timed/../untimed/graph.h \ -+ ../../sdf/base/timed/timed_types.h ../../sdf/base/timed/actor.h \ -+ ../../sdf/base/algo/acyclic.h ../../sdf/base/algo/../untimed/graph.h \ -+ ../../sdf/base/algo/components.h \ -+ ../../sdf/base/algo/../../../base/base.h ../../sdf/base/algo/connected.h \ -+ ../../sdf/base/algo/cycle.h ../../sdf/base/algo/dfs.h \ -+ ../../sdf/base/algo/repetition_vector.h ../../sdf/base/hsdf/check.h \ -+ ../../sdf/base/hsdf/../untimed/graph.h ../../sdf/analysis/analysis.h \ -+ ../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../sdf/analysis/buffersizing/buffer.h \ -+ ../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../sdf/analysis/latency/latency.h \ -+ ../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../sdf/analysis/latency/minimal.h \ -+ ../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../sdf/analysis/latency/selftimed.h \ -+ ../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../sdf/analysis/mcm/mcm.h \ -+ ../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../sdf/analysis/throughput/throughput.h \ -+ ../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../sdf/analysis/throughput/deadlock.h \ -+ ../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../sdf/generate/generate.h ../../sdf/generate/../base/timed/graph.h \ -+ ../../sdf/output/buffer_throughput/buffy.h \ -+ ../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../sdf/output/dot/dot.h \ -+ ../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../sdf/output/hapi/hapi.h \ -+ ../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../sdf/output/html/html.h \ -+ ../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../sdf/output/schedule/schedule.h \ -+ ../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../sdf/output/xml/xml.h ../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../sdf/resource_allocation/flow/flow.h \ -+ ../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../sdf/transform/model/autoconc.h \ -+ ../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../sdf/transform/model/buffersize.h \ -+ ../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../sdf/transform/to_apg/apg.h \ -+ ../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../sdf/transform/to_apg/apg.h ../../sdf/transform/hsdf/hsdf.h \ -+ ../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../sdf/transform/hsdf/unfold.h \ -+ ../../sdf/transform/misc/reverse_channels.h \ -+ ../../sdf/transform/misc/../../base/timed/graph.h channel.h actor.h \ -+ port.h type.h component.h ../../base/base.h memorytype.h scenario.h \ -+ fsm.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_base_port.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_base_port.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_base_port.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_base_port.d 2022-01-07 15:12:01.364598852 +0800 -@@ -0,0 +1,181 @@ -+fsmsadf_base_port.o: port.cc port.h type.h component.h ../../base/base.h \ -+ ../../base/exception/exception.h \ -+ ../../base/exception/../string/cstring.h \ -+ ../../base/exception/../string/../basic_types.h \ -+ ../../base/exception/../basic_types.h ../../base/fraction/fraction.h \ -+ ../../base/fraction/../basic_types.h ../../base/fraction/../math/cmath.h \ -+ ../../base/fraction/../string/cstring.h ../../base/xml/xml.h \ -+ ../../base/xml/../string/cstring.h /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h ../../base/tempfile/tempfile.h \ -+ ../../base/tempfile/../string/cstring.h ../../base/math/cmath.h \ -+ ../../base/random/random.h ../../base/sort/sort.h ../../base/time/time.h \ -+ ../../base/time/../basic_types.h ../../base/time/../string/cstring.h \ -+ ../../base/log/log.h ../../base/log/../string/cstring.h \ -+ ../../base/log/../basic_types.h ../../base/sequence/sequence.h \ -+ ../../base/sequence/../basic_types.h ../../base/matrix/matrix.h \ -+ ../../base/matrix/../basic_types.h ../../base/maxplus/maxplus.h \ -+ ../../base/maxplus/mptype.h ../../base/maxplus/../basic_types.h \ -+ ../../base/maxplus/../string/cstring.h ../../base/maxplus/mpmatrix.h \ -+ ../../base/lookup/clookup.h memorytype.h scenario.h graph.h \ -+ ../../sdf/sdf.h ../../sdf/base/untimed/graph.h \ -+ ../../sdf/base/untimed/channel.h ../../sdf/base/untimed/actor.h \ -+ ../../sdf/base/untimed/port.h ../../sdf/base/untimed/component.h \ -+ ../../sdf/base/untimed/../../../base/base.h \ -+ ../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../sdf/base/untimed/../../basic_types.h \ -+ ../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../sdf/base/timed/graph.h ../../sdf/base/timed/channel.h \ -+ ../../sdf/base/timed/../untimed/graph.h \ -+ ../../sdf/base/timed/timed_types.h ../../sdf/base/timed/actor.h \ -+ ../../sdf/base/algo/acyclic.h ../../sdf/base/algo/../untimed/graph.h \ -+ ../../sdf/base/algo/components.h \ -+ ../../sdf/base/algo/../../../base/base.h ../../sdf/base/algo/connected.h \ -+ ../../sdf/base/algo/cycle.h ../../sdf/base/algo/dfs.h \ -+ ../../sdf/base/algo/repetition_vector.h ../../sdf/base/hsdf/check.h \ -+ ../../sdf/base/hsdf/../untimed/graph.h ../../sdf/analysis/analysis.h \ -+ ../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../sdf/analysis/buffersizing/buffer.h \ -+ ../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../sdf/analysis/latency/latency.h \ -+ ../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../sdf/analysis/latency/minimal.h \ -+ ../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../sdf/analysis/latency/selftimed.h \ -+ ../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../sdf/analysis/mcm/mcm.h \ -+ ../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../sdf/analysis/throughput/throughput.h \ -+ ../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../sdf/analysis/throughput/deadlock.h \ -+ ../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../sdf/generate/generate.h ../../sdf/generate/../base/timed/graph.h \ -+ ../../sdf/output/buffer_throughput/buffy.h \ -+ ../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../sdf/output/dot/dot.h \ -+ ../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../sdf/output/hapi/hapi.h \ -+ ../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../sdf/output/html/html.h \ -+ ../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../sdf/output/schedule/schedule.h \ -+ ../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../sdf/output/xml/xml.h ../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../sdf/resource_allocation/flow/flow.h \ -+ ../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../sdf/transform/model/autoconc.h \ -+ ../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../sdf/transform/model/buffersize.h \ -+ ../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../sdf/transform/to_apg/apg.h \ -+ ../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../sdf/transform/to_apg/apg.h ../../sdf/transform/hsdf/hsdf.h \ -+ ../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../sdf/transform/hsdf/unfold.h \ -+ ../../sdf/transform/misc/reverse_channels.h \ -+ ../../sdf/transform/misc/../../base/timed/graph.h channel.h actor.h \ -+ fsm.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_base_scenario.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_base_scenario.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_base_scenario.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_base_scenario.d 2022-01-07 15:12:03.227933761 +0800 -@@ -0,0 +1,181 @@ -+fsmsadf_base_scenario.o: scenario.cc scenario.h component.h ../../base/base.h \ -+ ../../base/exception/exception.h \ -+ ../../base/exception/../string/cstring.h \ -+ ../../base/exception/../string/../basic_types.h \ -+ ../../base/exception/../basic_types.h ../../base/fraction/fraction.h \ -+ ../../base/fraction/../basic_types.h ../../base/fraction/../math/cmath.h \ -+ ../../base/fraction/../string/cstring.h ../../base/xml/xml.h \ -+ ../../base/xml/../string/cstring.h /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h ../../base/tempfile/tempfile.h \ -+ ../../base/tempfile/../string/cstring.h ../../base/math/cmath.h \ -+ ../../base/random/random.h ../../base/sort/sort.h ../../base/time/time.h \ -+ ../../base/time/../basic_types.h ../../base/time/../string/cstring.h \ -+ ../../base/log/log.h ../../base/log/../string/cstring.h \ -+ ../../base/log/../basic_types.h ../../base/sequence/sequence.h \ -+ ../../base/sequence/../basic_types.h ../../base/matrix/matrix.h \ -+ ../../base/matrix/../basic_types.h ../../base/maxplus/maxplus.h \ -+ ../../base/maxplus/mptype.h ../../base/maxplus/../basic_types.h \ -+ ../../base/maxplus/../string/cstring.h ../../base/maxplus/mpmatrix.h \ -+ ../../base/lookup/clookup.h graph.h ../../sdf/sdf.h \ -+ ../../sdf/base/untimed/graph.h ../../sdf/base/untimed/channel.h \ -+ ../../sdf/base/untimed/actor.h ../../sdf/base/untimed/port.h \ -+ ../../sdf/base/untimed/component.h \ -+ ../../sdf/base/untimed/../../../base/base.h \ -+ ../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../sdf/base/untimed/../../basic_types.h \ -+ ../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../sdf/base/timed/graph.h ../../sdf/base/timed/channel.h \ -+ ../../sdf/base/timed/../untimed/graph.h \ -+ ../../sdf/base/timed/timed_types.h ../../sdf/base/timed/actor.h \ -+ ../../sdf/base/algo/acyclic.h ../../sdf/base/algo/../untimed/graph.h \ -+ ../../sdf/base/algo/components.h \ -+ ../../sdf/base/algo/../../../base/base.h ../../sdf/base/algo/connected.h \ -+ ../../sdf/base/algo/cycle.h ../../sdf/base/algo/dfs.h \ -+ ../../sdf/base/algo/repetition_vector.h ../../sdf/base/hsdf/check.h \ -+ ../../sdf/base/hsdf/../untimed/graph.h ../../sdf/analysis/analysis.h \ -+ ../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../sdf/analysis/buffersizing/buffer.h \ -+ ../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../sdf/analysis/latency/latency.h \ -+ ../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../sdf/analysis/latency/minimal.h \ -+ ../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../sdf/analysis/latency/selftimed.h \ -+ ../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../sdf/analysis/mcm/mcm.h \ -+ ../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../sdf/analysis/throughput/throughput.h \ -+ ../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../sdf/analysis/throughput/deadlock.h \ -+ ../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../sdf/generate/generate.h ../../sdf/generate/../base/timed/graph.h \ -+ ../../sdf/output/buffer_throughput/buffy.h \ -+ ../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../sdf/output/dot/dot.h \ -+ ../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../sdf/output/hapi/hapi.h \ -+ ../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../sdf/output/html/html.h \ -+ ../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../sdf/output/schedule/schedule.h \ -+ ../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../sdf/output/xml/xml.h ../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../sdf/resource_allocation/flow/flow.h \ -+ ../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../sdf/transform/model/autoconc.h \ -+ ../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../sdf/transform/model/buffersize.h \ -+ ../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../sdf/transform/to_apg/apg.h \ -+ ../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../sdf/transform/to_apg/apg.h ../../sdf/transform/hsdf/hsdf.h \ -+ ../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../sdf/transform/hsdf/unfold.h \ -+ ../../sdf/transform/misc/reverse_channels.h \ -+ ../../sdf/transform/misc/../../base/timed/graph.h channel.h actor.h \ -+ port.h type.h memorytype.h fsm.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_base_type.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_base_type.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_base_type.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_base_type.d 2022-01-07 15:12:04.881268573 +0800 -@@ -0,0 +1,36 @@ -+fsmsadf_base_type.o: type.cc type.h component.h ../../base/base.h \ -+ ../../base/exception/exception.h \ -+ ../../base/exception/../string/cstring.h \ -+ ../../base/exception/../string/../basic_types.h \ -+ ../../base/exception/../basic_types.h ../../base/fraction/fraction.h \ -+ ../../base/fraction/../basic_types.h ../../base/fraction/../math/cmath.h \ -+ ../../base/fraction/../string/cstring.h ../../base/xml/xml.h \ -+ ../../base/xml/../string/cstring.h /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h ../../base/tempfile/tempfile.h \ -+ ../../base/tempfile/../string/cstring.h ../../base/math/cmath.h \ -+ ../../base/random/random.h ../../base/sort/sort.h ../../base/time/time.h \ -+ ../../base/time/../basic_types.h ../../base/time/../string/cstring.h \ -+ ../../base/log/log.h ../../base/log/../string/cstring.h \ -+ ../../base/log/../basic_types.h ../../base/sequence/sequence.h \ -+ ../../base/sequence/../basic_types.h ../../base/matrix/matrix.h \ -+ ../../base/matrix/../basic_types.h ../../base/maxplus/maxplus.h \ -+ ../../base/maxplus/mptype.h ../../base/maxplus/../basic_types.h \ -+ ../../base/maxplus/../string/cstring.h ../../base/maxplus/mpmatrix.h \ -+ ../../base/lookup/clookup.h memorytype.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_generate_generate.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_generate_generate.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_generate_generate.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_generate_generate.d 2022-01-07 15:12:30.181300421 +0800 -@@ -0,0 +1,232 @@ -+fsmsadf_generate_generate.o: generate.cc generate.h ../base/graph.h \ -+ ../base/../../sdf/sdf.h ../base/../../sdf/base/untimed/graph.h \ -+ ../base/../../sdf/base/untimed/channel.h \ -+ ../base/../../sdf/base/untimed/actor.h \ -+ ../base/../../sdf/base/untimed/port.h \ -+ ../base/../../sdf/base/untimed/component.h \ -+ ../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../base/../../sdf/base/untimed/../../../base/exception/exception.h \ -+ ../base/../../sdf/base/untimed/../../../base/exception/../string/cstring.h \ -+ ../base/../../sdf/base/untimed/../../../base/exception/../string/../basic_types.h \ -+ ../base/../../sdf/base/untimed/../../../base/exception/../basic_types.h \ -+ ../base/../../sdf/base/untimed/../../../base/fraction/fraction.h \ -+ ../base/../../sdf/base/untimed/../../../base/fraction/../basic_types.h \ -+ ../base/../../sdf/base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../base/../../sdf/base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../base/../../sdf/base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../base/../../sdf/base/untimed/../../../base/tempfile/tempfile.h \ -+ ../base/../../sdf/base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../base/../../sdf/base/untimed/../../../base/math/cmath.h \ -+ ../base/../../sdf/base/untimed/../../../base/random/random.h \ -+ ../base/../../sdf/base/untimed/../../../base/sort/sort.h \ -+ ../base/../../sdf/base/untimed/../../../base/time/time.h \ -+ ../base/../../sdf/base/untimed/../../../base/time/../basic_types.h \ -+ ../base/../../sdf/base/untimed/../../../base/time/../string/cstring.h \ -+ ../base/../../sdf/base/untimed/../../../base/log/log.h \ -+ ../base/../../sdf/base/untimed/../../../base/log/../string/cstring.h \ -+ ../base/../../sdf/base/untimed/../../../base/log/../basic_types.h \ -+ ../base/../../sdf/base/untimed/../../../base/sequence/sequence.h \ -+ ../base/../../sdf/base/untimed/../../../base/sequence/../basic_types.h \ -+ ../base/../../sdf/base/untimed/../../../base/matrix/matrix.h \ -+ ../base/../../sdf/base/untimed/../../../base/matrix/../basic_types.h \ -+ ../base/../../sdf/base/untimed/../../../base/maxplus/maxplus.h \ -+ ../base/../../sdf/base/untimed/../../../base/maxplus/mptype.h \ -+ ../base/../../sdf/base/untimed/../../../base/maxplus/../basic_types.h \ -+ ../base/../../sdf/base/untimed/../../../base/maxplus/../string/cstring.h \ -+ ../base/../../sdf/base/untimed/../../../base/maxplus/mpmatrix.h \ -+ ../base/../../sdf/base/untimed/../../../base/lookup/clookup.h \ -+ ../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../base/../../sdf/base/timed/graph.h \ -+ ../base/../../sdf/base/timed/channel.h \ -+ ../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../base/../../sdf/base/timed/timed_types.h \ -+ ../base/../../sdf/base/timed/actor.h \ -+ ../base/../../sdf/base/algo/acyclic.h \ -+ ../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../base/../../sdf/base/algo/components.h \ -+ ../base/../../sdf/base/algo/../../../base/base.h \ -+ ../base/../../sdf/base/algo/connected.h \ -+ ../base/../../sdf/base/algo/cycle.h ../base/../../sdf/base/algo/dfs.h \ -+ ../base/../../sdf/base/algo/repetition_vector.h \ -+ ../base/../../sdf/base/hsdf/check.h \ -+ ../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../base/../../sdf/analysis/analysis.h \ -+ ../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../base/../../sdf/analysis/latency/latency.h \ -+ ../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../base/../../sdf/analysis/latency/minimal.h \ -+ ../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../base/../../sdf/analysis/latency/selftimed.h \ -+ ../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../base/../../sdf/analysis/mcm/mcm.h \ -+ ../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../base/../../sdf/analysis/throughput/throughput.h \ -+ ../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../base/../../sdf/generate/generate.h \ -+ ../base/../../sdf/generate/../base/timed/graph.h \ -+ ../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../base/../../sdf/output/dot/dot.h \ -+ ../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../base/../../sdf/output/hapi/hapi.h \ -+ ../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../base/../../sdf/output/html/html.h \ -+ ../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../base/../../sdf/output/schedule/schedule.h \ -+ ../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../base/../../sdf/output/xml/xml.h \ -+ ../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../base/../../sdf/transform/model/autoconc.h \ -+ ../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../base/../../sdf/transform/model/buffersize.h \ -+ ../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../base/../../sdf/transform/to_apg/apg.h \ -+ ../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../base/../../sdf/transform/to_apg/apg.h \ -+ ../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../base/../../sdf/transform/hsdf/unfold.h \ -+ ../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../base/channel.h ../base/actor.h ../base/port.h ../base/type.h \ -+ ../base/component.h ../base/../../base/base.h ../base/memorytype.h \ -+ ../base/scenario.h ../base/fsm.h ../analysis/analysis.h \ -+ ../analysis/throughput/throughput.h \ -+ ../analysis/throughput/scenariograph.h \ -+ ../analysis/throughput/../../base/graph.h \ -+ ../analysis/throughput/fsm_ref_schedule.h \ -+ ../analysis/throughput/fsm_scenario_transitions.h \ -+ ../analysis/throughput/statespace.h \ -+ ../analysis/throughput/../../base/fsm.h \ -+ ../analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../analysis/throughput/maxplusautomaton.h \ -+ ../analysis/maxplus/mpexplore.h \ -+ ../analysis/maxplus/../base/repetition_vector.h \ -+ ../analysis/maxplus/../base/../../../base/base.h \ -+ ../analysis/maxplus/../base/../../base/graph.h \ -+ ../analysis/maxplus/../../base/graph.h \ -+ ../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ ../transform/transform.h ../transform/worst-case/worst-case.h \ -+ ../transform/worst-case/../../base/graph.h \ -+ ../transform/auto-concurrency/auto-concurrency.h \ -+ ../transform/auto-concurrency/../../base/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_output_html_html.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_output_html_html.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_output_html_html.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_output_html_html.d 2022-01-07 15:12:34.254640465 +0800 -@@ -0,0 +1,243 @@ -+fsmsadf_output_html_html.o: html.cc html.h \ -+ ../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/component.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/base.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/exception.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/xml/xml.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/math/cmath.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/random/random.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/sort/sort.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/time/time.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/log/log.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/memorytype.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/sdf.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/channel.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/actor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/port.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/component.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/timed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/timed/channel.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/timed/timed_types.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/timed/actor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/acyclic.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/components.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/connected.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/cycle.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/dfs.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/hsdf/check.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/analysis.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/latency.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/generate/generate.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/dot/dot.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/hapi/hapi.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/html.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/schedule/schedule.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/xml/xml.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/model/autoconc.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/model/buffersize.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/channel.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/actor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/port.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/type.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/scenario.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/component.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/fsm.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/graph_binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../../analysis/base/repetition_vector.h \ -+ ../../analysis/base/../../../base/base.h \ -+ ../../analysis/base/../../base/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_base_flow.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_base_flow.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_base_flow.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_base_flow.d 2022-01-07 15:13:09.841383667 +0800 -@@ -0,0 +1,238 @@ -+fsmsadf_resource_allocation_flow_base_platform_base_flow.o: flow.cc flow.h ../memory/memory.h \ -+ ../memory/../../../platform_binding/graph.h \ -+ ../memory/../../../platform_binding/tile.h \ -+ ../memory/../../../platform_binding/processor.h \ -+ ../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/component.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/base.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/exception.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/xml/xml.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/math/cmath.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/random/random.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/sort/sort.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/time/time.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/log/log.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/memorytype.h \ -+ ../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../memory/../../../platform_binding/../../base/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/sdf.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/channel.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/actor.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/port.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/component.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/timed/channel.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/timed/timed_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/timed/actor.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/algo/acyclic.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/algo/components.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/algo/connected.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/algo/cycle.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/algo/dfs.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/hsdf/check.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/analysis.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/latency.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/minimal.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/generate/generate.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/dot/dot.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/hapi/hapi.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/html.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/schedule/schedule.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/xml/xml.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/model/autoconc.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/model/buffersize.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/channel.h \ -+ ../memory/../../../platform_binding/../../base/actor.h \ -+ ../memory/../../../platform_binding/../../base/port.h \ -+ ../memory/../../../platform_binding/../../base/type.h \ -+ ../memory/../../../platform_binding/../../base/scenario.h \ -+ ../memory/../../../platform_binding/../../base/component.h \ -+ ../memory/../../../platform_binding/../../base/fsm.h \ -+ ../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../memory/../../../platform_binding/memory.h \ -+ ../memory/../../../platform_binding/constraint.h \ -+ ../memory/../../../platform_binding/networkinterface.h \ -+ ../memory/../../../platform_binding/connection.h ../tile/binding.h \ -+ ../tile/graph_binding.h ../tile/../../../platform_binding/graph.h \ -+ ../../../../output/html/html.h \ -+ ../../../../output/html/../../resource_allocation/flow/base_platform/base/flow.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_base_memory.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_base_memory.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_base_memory.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_base_memory.d 2022-01-07 15:13:12.011389344 +0800 -@@ -0,0 +1,236 @@ -+fsmsadf_resource_allocation_flow_base_platform_base_memory.o: memory.cc flow.h ../memory/memory.h \ -+ ../memory/../../../platform_binding/graph.h \ -+ ../memory/../../../platform_binding/tile.h \ -+ ../memory/../../../platform_binding/processor.h \ -+ ../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/component.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/base.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/exception.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/xml/xml.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/math/cmath.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/random/random.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/sort/sort.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/time/time.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/log/log.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/memorytype.h \ -+ ../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../memory/../../../platform_binding/../../base/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/sdf.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/channel.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/actor.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/port.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/component.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/timed/channel.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/timed/timed_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/timed/actor.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/algo/acyclic.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/algo/components.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/algo/connected.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/algo/cycle.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/algo/dfs.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/hsdf/check.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/analysis.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/latency.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/minimal.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/generate/generate.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/dot/dot.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/hapi/hapi.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/html.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/schedule/schedule.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/xml/xml.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/model/autoconc.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/model/buffersize.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/channel.h \ -+ ../memory/../../../platform_binding/../../base/actor.h \ -+ ../memory/../../../platform_binding/../../base/port.h \ -+ ../memory/../../../platform_binding/../../base/type.h \ -+ ../memory/../../../platform_binding/../../base/scenario.h \ -+ ../memory/../../../platform_binding/../../base/component.h \ -+ ../memory/../../../platform_binding/../../base/fsm.h \ -+ ../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../memory/../../../platform_binding/memory.h \ -+ ../memory/../../../platform_binding/constraint.h \ -+ ../memory/../../../platform_binding/networkinterface.h \ -+ ../memory/../../../platform_binding/connection.h ../tile/binding.h \ -+ ../tile/graph_binding.h ../tile/../../../platform_binding/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_base_tile.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_base_tile.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_base_tile.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_base_tile.d 2022-01-07 15:13:14.011394678 +0800 -@@ -0,0 +1,236 @@ -+fsmsadf_resource_allocation_flow_base_platform_base_tile.o: tile.cc flow.h ../memory/memory.h \ -+ ../memory/../../../platform_binding/graph.h \ -+ ../memory/../../../platform_binding/tile.h \ -+ ../memory/../../../platform_binding/processor.h \ -+ ../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/component.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/base.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/exception.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/xml/xml.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/math/cmath.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/random/random.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/sort/sort.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/time/time.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/log/log.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../memory/../../../platform_binding/../platform_graph/../../base/memorytype.h \ -+ ../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../memory/../../../platform_binding/../../base/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/sdf.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/channel.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/actor.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/port.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/component.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/timed/channel.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/timed/timed_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/timed/actor.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/algo/acyclic.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/algo/components.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/algo/connected.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/algo/cycle.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/algo/dfs.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/hsdf/check.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/analysis.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/latency.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/minimal.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/generate/generate.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/dot/dot.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/hapi/hapi.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/html.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/schedule/schedule.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/xml/xml.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/model/autoconc.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/model/buffersize.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../memory/../../../platform_binding/../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../memory/../../../platform_binding/../../base/channel.h \ -+ ../memory/../../../platform_binding/../../base/actor.h \ -+ ../memory/../../../platform_binding/../../base/port.h \ -+ ../memory/../../../platform_binding/../../base/type.h \ -+ ../memory/../../../platform_binding/../../base/scenario.h \ -+ ../memory/../../../platform_binding/../../base/component.h \ -+ ../memory/../../../platform_binding/../../base/fsm.h \ -+ ../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../memory/../../../platform_binding/memory.h \ -+ ../memory/../../../platform_binding/constraint.h \ -+ ../memory/../../../platform_binding/networkinterface.h \ -+ ../memory/../../../platform_binding/connection.h ../tile/binding.h \ -+ ../tile/graph_binding.h ../tile/../../../platform_binding/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_binding_aware_graph_binding_aware_graph.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_binding_aware_graph_binding_aware_graph.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_binding_aware_graph_binding_aware_graph.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_binding_aware_graph_binding_aware_graph.d 2022-01-07 15:13:30.051440892 +0800 -@@ -0,0 +1,237 @@ -+fsmsadf_resource_allocation_flow_base_platform_binding_aware_graph_binding_aware_graph.o: binding_aware_graph.cc binding_aware_graph.h \ -+ ../../../platform_binding/graph.h ../../../platform_binding/tile.h \ -+ ../../../platform_binding/processor.h \ -+ ../../../platform_binding/../platform_graph/graph.h \ -+ ../../../platform_binding/../platform_graph/tile.h \ -+ ../../../platform_binding/../platform_graph/processor.h \ -+ ../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../../platform_binding/../platform_graph/../../base/component.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/base.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/exception.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/xml/xml.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/math/cmath.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/random/random.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/sort/sort.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/time/time.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/log/log.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../../../platform_binding/../platform_graph/../../base/memorytype.h \ -+ ../../../platform_binding/../platform_graph/memory.h \ -+ ../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../../platform_binding/../platform_graph/connection.h \ -+ ../../../platform_binding/../../base/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/sdf.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/channel.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/actor.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/port.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/component.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/channel.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/timed_types.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/actor.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/acyclic.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/components.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/connected.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/cycle.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/dfs.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../../platform_binding/../../base/../../sdf/base/hsdf/check.h \ -+ ../../../platform_binding/../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/analysis.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/latency.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../../platform_binding/../../base/../../sdf/generate/generate.h \ -+ ../../../platform_binding/../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../../platform_binding/../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/dot/dot.h \ -+ ../../../platform_binding/../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/hapi/hapi.h \ -+ ../../../platform_binding/../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/html.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../../platform_binding/../../base/../../sdf/output/schedule/schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/xml/xml.h \ -+ ../../../platform_binding/../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/autoconc.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/buffersize.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/channel.h \ -+ ../../../platform_binding/../../base/actor.h \ -+ ../../../platform_binding/../../base/port.h \ -+ ../../../platform_binding/../../base/type.h \ -+ ../../../platform_binding/../../base/scenario.h \ -+ ../../../platform_binding/../../base/component.h \ -+ ../../../platform_binding/../../base/fsm.h \ -+ ../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../../platform_binding/memory.h \ -+ ../../../platform_binding/constraint.h \ -+ ../../../platform_binding/networkinterface.h \ -+ ../../../platform_binding/connection.h \ -+ ../../../../transform/model-static-order/hsdf-bambha.h \ -+ ../../../../transform/model-static-order/../../base/graph.h \ -+ ../../../../transform/model-static-order/../../resource_allocation/platform_binding/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_conversion_input_conversion.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_conversion_input_conversion.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_conversion_input_conversion.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_conversion_input_conversion.d 2022-01-07 15:13:33.574785186 +0800 -@@ -0,0 +1,29 @@ -+fsmsadf_resource_allocation_flow_base_platform_conversion_input_conversion.o: input_conversion.cc input_conversion.h \ -+ ../../../../../base/xml/xml.h \ -+ ../../../../../base/xml/../string/cstring.h \ -+ ../../../../../base/xml/../string/../basic_types.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_conversion_output_conversion.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_conversion_output_conversion.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_conversion_output_conversion.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_conversion_output_conversion.d 2022-01-07 15:13:34.374787713 +0800 -@@ -0,0 +1,26 @@ -+fsmsadf_resource_allocation_flow_base_platform_conversion_output_conversion.o: output_conversion.cc output_conversion.h \ -+ ../../../../../base/exception/exception.h \ -+ ../../../../../base/exception/../string/cstring.h \ -+ ../../../../../base/exception/../string/../basic_types.h \ -+ ../../../../../base/exception/../basic_types.h \ -+ ../../../../../base/xml/xml.h \ -+ ../../../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_memory_memory.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_memory_memory.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_memory_memory.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_memory_memory.d 2022-01-07 15:13:16.254734110 +0800 -@@ -0,0 +1,233 @@ -+fsmsadf_resource_allocation_flow_base_platform_memory_memory.o: memory.cc memory.h ../../../platform_binding/graph.h \ -+ ../../../platform_binding/tile.h ../../../platform_binding/processor.h \ -+ ../../../platform_binding/../platform_graph/graph.h \ -+ ../../../platform_binding/../platform_graph/tile.h \ -+ ../../../platform_binding/../platform_graph/processor.h \ -+ ../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../../platform_binding/../platform_graph/../../base/component.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/base.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/exception.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/xml/xml.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/math/cmath.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/random/random.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/sort/sort.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/time/time.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/log/log.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../../../platform_binding/../platform_graph/../../base/memorytype.h \ -+ ../../../platform_binding/../platform_graph/memory.h \ -+ ../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../../platform_binding/../platform_graph/connection.h \ -+ ../../../platform_binding/../../base/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/sdf.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/channel.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/actor.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/port.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/component.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/channel.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/timed_types.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/actor.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/acyclic.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/components.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/connected.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/cycle.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/dfs.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../../platform_binding/../../base/../../sdf/base/hsdf/check.h \ -+ ../../../platform_binding/../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/analysis.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/latency.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../../platform_binding/../../base/../../sdf/generate/generate.h \ -+ ../../../platform_binding/../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../../platform_binding/../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/dot/dot.h \ -+ ../../../platform_binding/../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/hapi/hapi.h \ -+ ../../../platform_binding/../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/html.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../../platform_binding/../../base/../../sdf/output/schedule/schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/xml/xml.h \ -+ ../../../platform_binding/../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/autoconc.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/buffersize.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/channel.h \ -+ ../../../platform_binding/../../base/actor.h \ -+ ../../../platform_binding/../../base/port.h \ -+ ../../../platform_binding/../../base/type.h \ -+ ../../../platform_binding/../../base/scenario.h \ -+ ../../../platform_binding/../../base/component.h \ -+ ../../../platform_binding/../../base/fsm.h \ -+ ../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../../platform_binding/memory.h \ -+ ../../../platform_binding/constraint.h \ -+ ../../../platform_binding/networkinterface.h \ -+ ../../../platform_binding/connection.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_tile_binding.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_tile_binding.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_tile_binding.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_tile_binding.d 2022-01-07 15:13:19.921411000 +0800 -@@ -0,0 +1,242 @@ -+fsmsadf_resource_allocation_flow_base_platform_tile_binding.o: binding.cc binding.h graph_binding.h \ -+ ../../../platform_binding/graph.h ../../../platform_binding/tile.h \ -+ ../../../platform_binding/processor.h \ -+ ../../../platform_binding/../platform_graph/graph.h \ -+ ../../../platform_binding/../platform_graph/tile.h \ -+ ../../../platform_binding/../platform_graph/processor.h \ -+ ../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../../platform_binding/../platform_graph/../../base/component.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/base.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/exception.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/xml/xml.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/math/cmath.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/random/random.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/sort/sort.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/time/time.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/log/log.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../../../platform_binding/../platform_graph/../../base/memorytype.h \ -+ ../../../platform_binding/../platform_graph/memory.h \ -+ ../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../../platform_binding/../platform_graph/connection.h \ -+ ../../../platform_binding/../../base/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/sdf.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/channel.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/actor.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/port.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/component.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/channel.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/timed_types.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/actor.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/acyclic.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/components.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/connected.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/cycle.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/dfs.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../../platform_binding/../../base/../../sdf/base/hsdf/check.h \ -+ ../../../platform_binding/../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/analysis.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/latency.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../../platform_binding/../../base/../../sdf/generate/generate.h \ -+ ../../../platform_binding/../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../../platform_binding/../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/dot/dot.h \ -+ ../../../platform_binding/../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/hapi/hapi.h \ -+ ../../../platform_binding/../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/html.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../../platform_binding/../../base/../../sdf/output/schedule/schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/xml/xml.h \ -+ ../../../platform_binding/../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/autoconc.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/buffersize.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/channel.h \ -+ ../../../platform_binding/../../base/actor.h \ -+ ../../../platform_binding/../../base/port.h \ -+ ../../../platform_binding/../../base/type.h \ -+ ../../../platform_binding/../../base/scenario.h \ -+ ../../../platform_binding/../../base/component.h \ -+ ../../../platform_binding/../../base/fsm.h \ -+ ../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../../platform_binding/memory.h \ -+ ../../../platform_binding/constraint.h \ -+ ../../../platform_binding/networkinterface.h \ -+ ../../../platform_binding/connection.h \ -+ ../../../../analysis/base/repetition_vector.h \ -+ ../../../../analysis/base/../../../base/base.h \ -+ ../../../../analysis/base/../../base/graph.h \ -+ ../../../scheduling/earliest_deadline_first/edf.h \ -+ ../../../scheduling/earliest_deadline_first/precedence_graph.h \ -+ ../../../scheduling/earliest_deadline_first/../../../base/graph.h \ -+ ../../../scheduling/earliest_deadline_first/../../flow/base_platform/binding_aware_graph/binding_aware_graph.h \ -+ ../../../scheduling/earliest_deadline_first/../../flow/base_platform/binding_aware_graph/../../../platform_binding/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_tile_graph_binding.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_tile_graph_binding.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_tile_graph_binding.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_base_platform_tile_graph_binding.d 2022-01-07 15:13:25.548093975 +0800 -@@ -0,0 +1,234 @@ -+fsmsadf_resource_allocation_flow_base_platform_tile_graph_binding.o: graph_binding.cc graph_binding.h \ -+ ../../../platform_binding/graph.h ../../../platform_binding/tile.h \ -+ ../../../platform_binding/processor.h \ -+ ../../../platform_binding/../platform_graph/graph.h \ -+ ../../../platform_binding/../platform_graph/tile.h \ -+ ../../../platform_binding/../platform_graph/processor.h \ -+ ../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../../platform_binding/../platform_graph/../../base/component.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/base.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/exception.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/xml/xml.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/math/cmath.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/random/random.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/sort/sort.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/time/time.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/log/log.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../../../platform_binding/../platform_graph/../../base/memorytype.h \ -+ ../../../platform_binding/../platform_graph/memory.h \ -+ ../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../../platform_binding/../platform_graph/connection.h \ -+ ../../../platform_binding/../../base/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/sdf.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/channel.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/actor.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/port.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/component.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/channel.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/timed_types.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/actor.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/acyclic.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/components.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/connected.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/cycle.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/dfs.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../../platform_binding/../../base/../../sdf/base/hsdf/check.h \ -+ ../../../platform_binding/../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/analysis.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/latency.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../../platform_binding/../../base/../../sdf/generate/generate.h \ -+ ../../../platform_binding/../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../../platform_binding/../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/dot/dot.h \ -+ ../../../platform_binding/../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/hapi/hapi.h \ -+ ../../../platform_binding/../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/html.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../../platform_binding/../../base/../../sdf/output/schedule/schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/xml/xml.h \ -+ ../../../platform_binding/../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/autoconc.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/buffersize.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/channel.h \ -+ ../../../platform_binding/../../base/actor.h \ -+ ../../../platform_binding/../../base/port.h \ -+ ../../../platform_binding/../../base/type.h \ -+ ../../../platform_binding/../../base/scenario.h \ -+ ../../../platform_binding/../../base/component.h \ -+ ../../../platform_binding/../../base/fsm.h \ -+ ../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../../platform_binding/memory.h \ -+ ../../../platform_binding/constraint.h \ -+ ../../../platform_binding/networkinterface.h \ -+ ../../../platform_binding/connection.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_base_flow.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_base_flow.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_base_flow.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_base_flow.d 2022-01-07 15:14:01.894883495 +0800 -@@ -0,0 +1,245 @@ -+fsmsadf_resource_allocation_flow_compsoc_platform_base_flow.o: flow.cc flow.h ../../base_platform/base/flow.h \ -+ ../../base_platform/base/../memory/memory.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/component.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/base.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/exception.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/xml/xml.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/math/cmath.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/random/random.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/sort/sort.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/time/time.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/log/log.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/memorytype.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/sdf.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/channel.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/actor.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/port.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/component.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/timed/channel.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/timed/actor.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/components.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/connected.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/cycle.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/dfs.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/hsdf/check.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/analysis.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/generate/generate.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/dot/dot.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/html.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/xml/xml.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/channel.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/actor.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/port.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/type.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/scenario.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/component.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/fsm.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../base_platform/base/../tile/binding.h \ -+ ../../base_platform/base/../tile/graph_binding.h \ -+ ../../base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../memory/memory.h ../memory/../../base_platform/memory/memory.h \ -+ ../memory/../../../platform_binding/graph.h ../tile/binding.h \ -+ ../tile/../../base_platform/tile/binding.h \ -+ ../tile/../../base_platform/tile/graph_binding.h ../tile/graph_binding.h \ -+ ../tile/../../../platform_binding/graph.h ../../../../output/html/html.h \ -+ ../../../../output/html/../../resource_allocation/flow/base_platform/base/flow.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_binding_aware_graph_binding_aware_graph.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_binding_aware_graph_binding_aware_graph.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_binding_aware_graph_binding_aware_graph.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_binding_aware_graph_binding_aware_graph.d 2022-01-07 15:14:09.168244941 +0800 -@@ -0,0 +1,237 @@ -+fsmsadf_resource_allocation_flow_compsoc_platform_binding_aware_graph_binding_aware_graph.o: binding_aware_graph.cc binding_aware_graph.h \ -+ ../../base_platform/binding_aware_graph/binding_aware_graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/tile.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/processor.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/tile.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/processor.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/component.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/base.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/exception/exception.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/xml/xml.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/math/cmath.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/random/random.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/sort/sort.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/time/time.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/log/log.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/memorytype.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/memory.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/connection.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/sdf.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/channel.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/actor.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/port.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/component.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/timed/channel.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/timed/actor.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/algo/components.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/algo/connected.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/algo/cycle.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/algo/dfs.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/hsdf/check.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/analysis.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/generate/generate.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/dot/dot.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/html.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/xml/xml.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/channel.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/actor.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/port.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/type.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/scenario.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/component.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/fsm.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/memory.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/constraint.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/networkinterface.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/connection.h \ -+ ../../../platform_binding/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_conversion_helper.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_conversion_helper.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_conversion_helper.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_conversion_helper.d 2022-01-07 15:13:48.771502370 +0800 -@@ -0,0 +1,52 @@ -+fsmsadf_resource_allocation_flow_compsoc_platform_conversion_helper.o: helper.cc helper.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_conversion_input_conversion.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_conversion_input_conversion.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_conversion_input_conversion.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_conversion_input_conversion.d 2022-01-07 15:13:56.458196569 +0800 -@@ -0,0 +1,60 @@ -+fsmsadf_resource_allocation_flow_compsoc_platform_conversion_input_conversion.o: input_conversion.cc input_conversion.h \ -+ ../../../../../base/exception/exception.h \ -+ ../../../../../base/exception/../string/cstring.h \ -+ ../../../../../base/exception/../string/../basic_types.h \ -+ ../../../../../base/exception/../basic_types.h \ -+ ../../base_platform/conversion/input_conversion.h \ -+ ../../base_platform/conversion/../../../../../base/xml/xml.h \ -+ ../../base_platform/conversion/../../../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h ../../../../../base/xml/xml.h \ -+ ../../../../base/type.h ../../../../base/component.h \ -+ ../../../../base/../../base/base.h \ -+ ../../../../base/../../base/exception/exception.h \ -+ ../../../../base/../../base/fraction/fraction.h \ -+ ../../../../base/../../base/fraction/../basic_types.h \ -+ ../../../../base/../../base/fraction/../math/cmath.h \ -+ ../../../../base/../../base/fraction/../string/cstring.h \ -+ ../../../../base/../../base/xml/xml.h \ -+ ../../../../base/../../base/tempfile/tempfile.h \ -+ ../../../../base/../../base/tempfile/../string/cstring.h \ -+ ../../../../base/../../base/math/cmath.h \ -+ ../../../../base/../../base/random/random.h \ -+ ../../../../base/../../base/sort/sort.h \ -+ ../../../../base/../../base/time/time.h \ -+ ../../../../base/../../base/time/../basic_types.h \ -+ ../../../../base/../../base/time/../string/cstring.h \ -+ ../../../../base/../../base/log/log.h \ -+ ../../../../base/../../base/log/../string/cstring.h \ -+ ../../../../base/../../base/log/../basic_types.h \ -+ ../../../../base/../../base/sequence/sequence.h \ -+ ../../../../base/../../base/sequence/../basic_types.h \ -+ ../../../../base/../../base/matrix/matrix.h \ -+ ../../../../base/../../base/matrix/../basic_types.h \ -+ ../../../../base/../../base/maxplus/maxplus.h \ -+ ../../../../base/../../base/maxplus/mptype.h \ -+ ../../../../base/../../base/maxplus/../basic_types.h \ -+ ../../../../base/../../base/maxplus/../string/cstring.h \ -+ ../../../../base/../../base/maxplus/mpmatrix.h \ -+ ../../../../base/../../base/lookup/clookup.h \ -+ ../../../../base/memorytype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ ../../../platform_graph/memory.h \ -+ ../../../platform_graph/../../base/type.h helper.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_conversion_output_conversion.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_conversion_output_conversion.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_conversion_output_conversion.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_conversion_output_conversion.d 2022-01-07 15:13:58.348203539 +0800 -@@ -0,0 +1,61 @@ -+fsmsadf_resource_allocation_flow_compsoc_platform_conversion_output_conversion.o: output_conversion.cc output_conversion.h \ -+ ../../../../../base/exception/exception.h \ -+ ../../../../../base/exception/../string/cstring.h \ -+ ../../../../../base/exception/../string/../basic_types.h \ -+ ../../../../../base/exception/../basic_types.h \ -+ ../../base_platform/conversion/output_conversion.h \ -+ ../../base_platform/conversion/../../../../../base/exception/exception.h \ -+ ../../base_platform/conversion/../../../../../base/xml/xml.h \ -+ ../../base_platform/conversion/../../../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h ../../../../../base/xml/xml.h \ -+ ../../../../base/type.h ../../../../base/component.h \ -+ ../../../../base/../../base/base.h \ -+ ../../../../base/../../base/exception/exception.h \ -+ ../../../../base/../../base/fraction/fraction.h \ -+ ../../../../base/../../base/fraction/../basic_types.h \ -+ ../../../../base/../../base/fraction/../math/cmath.h \ -+ ../../../../base/../../base/fraction/../string/cstring.h \ -+ ../../../../base/../../base/xml/xml.h \ -+ ../../../../base/../../base/tempfile/tempfile.h \ -+ ../../../../base/../../base/tempfile/../string/cstring.h \ -+ ../../../../base/../../base/math/cmath.h \ -+ ../../../../base/../../base/random/random.h \ -+ ../../../../base/../../base/sort/sort.h \ -+ ../../../../base/../../base/time/time.h \ -+ ../../../../base/../../base/time/../basic_types.h \ -+ ../../../../base/../../base/time/../string/cstring.h \ -+ ../../../../base/../../base/log/log.h \ -+ ../../../../base/../../base/log/../string/cstring.h \ -+ ../../../../base/../../base/log/../basic_types.h \ -+ ../../../../base/../../base/sequence/sequence.h \ -+ ../../../../base/../../base/sequence/../basic_types.h \ -+ ../../../../base/../../base/matrix/matrix.h \ -+ ../../../../base/../../base/matrix/../basic_types.h \ -+ ../../../../base/../../base/maxplus/maxplus.h \ -+ ../../../../base/../../base/maxplus/mptype.h \ -+ ../../../../base/../../base/maxplus/../basic_types.h \ -+ ../../../../base/../../base/maxplus/../string/cstring.h \ -+ ../../../../base/../../base/maxplus/mpmatrix.h \ -+ ../../../../base/../../base/lookup/clookup.h \ -+ ../../../../base/memorytype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ ../../../platform_graph/memory.h \ -+ ../../../platform_graph/../../base/type.h helper.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_memory_memory.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_memory_memory.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_memory_memory.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_memory_memory.d 2022-01-07 15:14:12.364924325 +0800 -@@ -0,0 +1,236 @@ -+fsmsadf_resource_allocation_flow_compsoc_platform_memory_memory.o: memory.cc memory.h ../../base_platform/memory/memory.h \ -+ ../../base_platform/memory/../../../platform_binding/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/tile.h \ -+ ../../base_platform/memory/../../../platform_binding/processor.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/component.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/base.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/exception.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/xml/xml.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/math/cmath.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/random/random.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/sort/sort.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/time/time.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/log/log.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/memorytype.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/sdf.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/untimed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/untimed/channel.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/untimed/actor.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/untimed/port.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/untimed/component.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/timed/channel.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/timed/actor.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/algo/components.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/algo/connected.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/algo/cycle.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/algo/dfs.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/hsdf/check.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/analysis.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/generate/generate.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/dot/dot.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/html/html.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/xml/xml.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/channel.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/actor.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/port.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/type.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/scenario.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/component.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/fsm.h \ -+ ../../base_platform/memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../base_platform/memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/memory.h \ -+ ../../base_platform/memory/../../../platform_binding/constraint.h \ -+ ../../base_platform/memory/../../../platform_binding/networkinterface.h \ -+ ../../base_platform/memory/../../../platform_binding/connection.h \ -+ ../../../platform_binding/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_tile_binding.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_tile_binding.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_tile_binding.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_tile_binding.d 2022-01-07 15:14:04.251559145 +0800 -@@ -0,0 +1,262 @@ -+fsmsadf_resource_allocation_flow_compsoc_platform_tile_binding.o: binding.cc binding.h ../../base_platform/tile/binding.h \ -+ ../../base_platform/tile/graph_binding.h \ -+ ../../base_platform/tile/../../../platform_binding/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/tile.h \ -+ ../../base_platform/tile/../../../platform_binding/processor.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/tile.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/processor.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/component.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/base.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/exception/exception.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/xml/xml.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/math/cmath.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/random/random.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/sort/sort.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/time/time.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/log/log.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/memorytype.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/memory.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/connection.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/sdf.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/channel.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/actor.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/port.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/component.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/timed/channel.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/timed/actor.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/algo/components.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/algo/connected.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/algo/cycle.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/algo/dfs.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/hsdf/check.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/analysis.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/generate/generate.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/dot/dot.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/html.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/xml/xml.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/channel.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/actor.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/port.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/type.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/scenario.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/component.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/fsm.h \ -+ ../../base_platform/tile/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../base_platform/tile/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/memory.h \ -+ ../../base_platform/tile/../../../platform_binding/constraint.h \ -+ ../../base_platform/tile/../../../platform_binding/networkinterface.h \ -+ ../../base_platform/tile/../../../platform_binding/connection.h \ -+ ../../base_platform/tile/graph_binding.h graph_binding.h \ -+ ../../../platform_binding/graph.h \ -+ ../binding_aware_graph/binding_aware_graph.h \ -+ ../binding_aware_graph/../../base_platform/binding_aware_graph/binding_aware_graph.h \ -+ ../binding_aware_graph/../../base_platform/binding_aware_graph/../../../platform_binding/graph.h \ -+ ../binding_aware_graph/../../../platform_binding/graph.h \ -+ ../../../../analysis/base/repetition_vector.h \ -+ ../../../../analysis/base/../../../base/base.h \ -+ ../../../../analysis/base/../../base/graph.h \ -+ ../../../scheduling/earliest_deadline_first/edf.h \ -+ ../../../scheduling/earliest_deadline_first/precedence_graph.h \ -+ ../../../scheduling/earliest_deadline_first/../../../base/graph.h \ -+ ../../../scheduling/earliest_deadline_first/../../flow/base_platform/binding_aware_graph/binding_aware_graph.h \ -+ ../../../../analysis/throughput/throughput.h \ -+ ../../../../analysis/throughput/scenariograph.h \ -+ ../../../../analysis/throughput/../../base/graph.h \ -+ ../../../../analysis/throughput/fsm_ref_schedule.h \ -+ ../../../../analysis/throughput/fsm_scenario_transitions.h \ -+ ../../../../analysis/throughput/statespace.h \ -+ ../../../../analysis/throughput/../../base/fsm.h \ -+ ../../../../analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../../../analysis/throughput/maxplusautomaton.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_tile_graph_binding.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_tile_graph_binding.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_tile_graph_binding.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_compsoc_platform_tile_graph_binding.d 2022-01-07 15:14:06.988236393 +0800 -@@ -0,0 +1,236 @@ -+fsmsadf_resource_allocation_flow_compsoc_platform_tile_graph_binding.o: graph_binding.cc graph_binding.h \ -+ ../../../platform_binding/graph.h ../../../platform_binding/tile.h \ -+ ../../../platform_binding/processor.h \ -+ ../../../platform_binding/../platform_graph/graph.h \ -+ ../../../platform_binding/../platform_graph/tile.h \ -+ ../../../platform_binding/../platform_graph/processor.h \ -+ ../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../../platform_binding/../platform_graph/../../base/component.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/base.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/exception.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/xml/xml.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/math/cmath.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/random/random.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/sort/sort.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/time/time.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/log/log.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../../../platform_binding/../platform_graph/../../base/memorytype.h \ -+ ../../../platform_binding/../platform_graph/memory.h \ -+ ../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../../platform_binding/../platform_graph/connection.h \ -+ ../../../platform_binding/../../base/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/sdf.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/channel.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/actor.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/port.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/component.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/channel.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/timed_types.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/actor.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/acyclic.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/components.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/connected.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/cycle.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/dfs.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../../platform_binding/../../base/../../sdf/base/hsdf/check.h \ -+ ../../../platform_binding/../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/analysis.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/latency.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../../platform_binding/../../base/../../sdf/generate/generate.h \ -+ ../../../platform_binding/../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../../platform_binding/../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/dot/dot.h \ -+ ../../../platform_binding/../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/hapi/hapi.h \ -+ ../../../platform_binding/../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/html.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../../platform_binding/../../base/../../sdf/output/schedule/schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/xml/xml.h \ -+ ../../../platform_binding/../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/autoconc.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/buffersize.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/channel.h \ -+ ../../../platform_binding/../../base/actor.h \ -+ ../../../platform_binding/../../base/port.h \ -+ ../../../platform_binding/../../base/type.h \ -+ ../../../platform_binding/../../base/scenario.h \ -+ ../../../platform_binding/../../base/component.h \ -+ ../../../platform_binding/../../base/fsm.h \ -+ ../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../../platform_binding/memory.h \ -+ ../../../platform_binding/constraint.h \ -+ ../../../platform_binding/networkinterface.h \ -+ ../../../platform_binding/connection.h \ -+ ../../base_platform/tile/graph_binding.h \ -+ ../../base_platform/tile/../../../platform_binding/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_mamps_platform_base_flow.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_mamps_platform_base_flow.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_mamps_platform_base_flow.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_mamps_platform_base_flow.d 2022-01-07 15:14:15.558270580 +0800 -@@ -0,0 +1,245 @@ -+fsmsadf_resource_allocation_flow_mamps_platform_base_flow.o: flow.cc flow.h ../../base_platform/base/flow.h \ -+ ../../base_platform/base/../memory/memory.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/component.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/base.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/exception.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/xml/xml.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/math/cmath.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/random/random.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/sort/sort.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/time/time.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/log/log.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/memorytype.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/sdf.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/channel.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/actor.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/port.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/component.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/timed/channel.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/timed/actor.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/components.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/connected.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/cycle.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/dfs.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/hsdf/check.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/analysis.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/generate/generate.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/dot/dot.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/html.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/xml/xml.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/channel.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/actor.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/port.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/type.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/scenario.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/component.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/fsm.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../base_platform/base/../tile/binding.h \ -+ ../../base_platform/base/../tile/graph_binding.h \ -+ ../../base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../memory/memory.h ../memory/../../base_platform/memory/memory.h \ -+ ../memory/../../../platform_binding/graph.h ../tile/binding.h \ -+ ../tile/../../base_platform/tile/binding.h \ -+ ../tile/../../base_platform/tile/graph_binding.h ../tile/graph_binding.h \ -+ ../tile/../../../platform_binding/graph.h ../../../../output/html/html.h \ -+ ../../../../output/html/../../resource_allocation/flow/base_platform/base/flow.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_mamps_platform_binding_aware_graph_binding_aware_graph.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_mamps_platform_binding_aware_graph_binding_aware_graph.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_mamps_platform_binding_aware_graph_binding_aware_graph.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_mamps_platform_binding_aware_graph_binding_aware_graph.d 2022-01-07 15:14:22.848300886 +0800 -@@ -0,0 +1,237 @@ -+fsmsadf_resource_allocation_flow_mamps_platform_binding_aware_graph_binding_aware_graph.o: binding_aware_graph.cc binding_aware_graph.h \ -+ ../../base_platform/binding_aware_graph/binding_aware_graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/tile.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/processor.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/tile.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/processor.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/component.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/base.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/exception/exception.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/xml/xml.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/math/cmath.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/random/random.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/sort/sort.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/time/time.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/log/log.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/memorytype.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/memory.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/connection.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/sdf.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/channel.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/actor.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/port.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/component.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/timed/channel.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/timed/actor.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/algo/components.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/algo/connected.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/algo/cycle.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/algo/dfs.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/hsdf/check.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/analysis.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/generate/generate.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/dot/dot.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/html.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/xml/xml.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/channel.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/actor.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/port.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/type.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/scenario.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/component.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/fsm.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/memory.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/constraint.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/networkinterface.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/connection.h \ -+ ../../../platform_binding/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_mamps_platform_conversion_input_conversion.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_mamps_platform_conversion_input_conversion.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_mamps_platform_conversion_input_conversion.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_mamps_platform_conversion_input_conversion.d 2022-01-07 15:14:25.564979134 +0800 -@@ -0,0 +1,56 @@ -+fsmsadf_resource_allocation_flow_mamps_platform_conversion_input_conversion.o: input_conversion.cc input_conversion.h \ -+ ../../../../../base/exception/exception.h \ -+ ../../../../../base/exception/../string/cstring.h \ -+ ../../../../../base/exception/../string/../basic_types.h \ -+ ../../../../../base/exception/../basic_types.h \ -+ ../../base_platform/conversion/input_conversion.h \ -+ ../../base_platform/conversion/../../../../../base/xml/xml.h \ -+ ../../base_platform/conversion/../../../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h ../../../../../base/xml/xml.h \ -+ ../../compsoc_platform/conversion/helper.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_mamps_platform_conversion_output_conversion.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_mamps_platform_conversion_output_conversion.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_mamps_platform_conversion_output_conversion.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_mamps_platform_conversion_output_conversion.d 2022-01-07 15:14:26.968318507 +0800 -@@ -0,0 +1,58 @@ -+fsmsadf_resource_allocation_flow_mamps_platform_conversion_output_conversion.o: output_conversion.cc output_conversion.h \ -+ ../../../../../base/exception/exception.h \ -+ ../../../../../base/exception/../string/cstring.h \ -+ ../../../../../base/exception/../string/../basic_types.h \ -+ ../../../../../base/exception/../basic_types.h \ -+ ../../base_platform/conversion/output_conversion.h \ -+ ../../base_platform/conversion/../../../../../base/exception/exception.h \ -+ ../../base_platform/conversion/../../../../../base/xml/xml.h \ -+ ../../base_platform/conversion/../../../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h ../../../../../base/xml/xml.h \ -+ ../../compsoc_platform/conversion/helper.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_mamps_platform_tile_binding.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_mamps_platform_tile_binding.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_mamps_platform_tile_binding.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_mamps_platform_tile_binding.d 2022-01-07 15:14:17.908280226 +0800 -@@ -0,0 +1,262 @@ -+fsmsadf_resource_allocation_flow_mamps_platform_tile_binding.o: binding.cc binding.h ../../base_platform/tile/binding.h \ -+ ../../base_platform/tile/graph_binding.h \ -+ ../../base_platform/tile/../../../platform_binding/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/tile.h \ -+ ../../base_platform/tile/../../../platform_binding/processor.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/tile.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/processor.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/component.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/base.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/exception/exception.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/xml/xml.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/math/cmath.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/random/random.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/sort/sort.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/time/time.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/log/log.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/memorytype.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/memory.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/connection.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/sdf.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/channel.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/actor.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/port.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/component.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/timed/channel.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/timed/actor.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/algo/components.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/algo/connected.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/algo/cycle.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/algo/dfs.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/hsdf/check.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/analysis.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/generate/generate.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/dot/dot.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/html.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/xml/xml.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/channel.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/actor.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/port.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/type.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/scenario.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/component.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/fsm.h \ -+ ../../base_platform/tile/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../base_platform/tile/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/memory.h \ -+ ../../base_platform/tile/../../../platform_binding/constraint.h \ -+ ../../base_platform/tile/../../../platform_binding/networkinterface.h \ -+ ../../base_platform/tile/../../../platform_binding/connection.h \ -+ ../../base_platform/tile/graph_binding.h graph_binding.h \ -+ ../../../platform_binding/graph.h \ -+ ../binding_aware_graph/binding_aware_graph.h \ -+ ../binding_aware_graph/../../base_platform/binding_aware_graph/binding_aware_graph.h \ -+ ../binding_aware_graph/../../base_platform/binding_aware_graph/../../../platform_binding/graph.h \ -+ ../binding_aware_graph/../../../platform_binding/graph.h \ -+ ../../../../analysis/base/repetition_vector.h \ -+ ../../../../analysis/base/../../../base/base.h \ -+ ../../../../analysis/base/../../base/graph.h \ -+ ../../../scheduling/earliest_deadline_first/edf.h \ -+ ../../../scheduling/earliest_deadline_first/precedence_graph.h \ -+ ../../../scheduling/earliest_deadline_first/../../../base/graph.h \ -+ ../../../scheduling/earliest_deadline_first/../../flow/base_platform/binding_aware_graph/binding_aware_graph.h \ -+ ../../../../analysis/throughput/throughput.h \ -+ ../../../../analysis/throughput/scenariograph.h \ -+ ../../../../analysis/throughput/../../base/graph.h \ -+ ../../../../analysis/throughput/fsm_ref_schedule.h \ -+ ../../../../analysis/throughput/fsm_scenario_transitions.h \ -+ ../../../../analysis/throughput/statespace.h \ -+ ../../../../analysis/throughput/../../base/fsm.h \ -+ ../../../../analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../../../analysis/throughput/maxplusautomaton.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_mamps_platform_tile_graph_binding.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_mamps_platform_tile_graph_binding.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_mamps_platform_tile_graph_binding.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_mamps_platform_tile_graph_binding.d 2022-01-07 15:14:20.651624970 +0800 -@@ -0,0 +1,236 @@ -+fsmsadf_resource_allocation_flow_mamps_platform_tile_graph_binding.o: graph_binding.cc graph_binding.h \ -+ ../../../platform_binding/graph.h ../../../platform_binding/tile.h \ -+ ../../../platform_binding/processor.h \ -+ ../../../platform_binding/../platform_graph/graph.h \ -+ ../../../platform_binding/../platform_graph/tile.h \ -+ ../../../platform_binding/../platform_graph/processor.h \ -+ ../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../../platform_binding/../platform_graph/../../base/component.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/base.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/exception.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/xml/xml.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/math/cmath.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/random/random.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/sort/sort.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/time/time.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/log/log.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../../../platform_binding/../platform_graph/../../base/memorytype.h \ -+ ../../../platform_binding/../platform_graph/memory.h \ -+ ../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../../platform_binding/../platform_graph/connection.h \ -+ ../../../platform_binding/../../base/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/sdf.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/channel.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/actor.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/port.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/component.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/channel.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/timed_types.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/actor.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/acyclic.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/components.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/connected.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/cycle.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/dfs.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../../platform_binding/../../base/../../sdf/base/hsdf/check.h \ -+ ../../../platform_binding/../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/analysis.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/latency.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../../platform_binding/../../base/../../sdf/generate/generate.h \ -+ ../../../platform_binding/../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../../platform_binding/../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/dot/dot.h \ -+ ../../../platform_binding/../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/hapi/hapi.h \ -+ ../../../platform_binding/../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/html.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../../platform_binding/../../base/../../sdf/output/schedule/schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/xml/xml.h \ -+ ../../../platform_binding/../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/autoconc.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/buffersize.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/channel.h \ -+ ../../../platform_binding/../../base/actor.h \ -+ ../../../platform_binding/../../base/port.h \ -+ ../../../platform_binding/../../base/type.h \ -+ ../../../platform_binding/../../base/scenario.h \ -+ ../../../platform_binding/../../base/component.h \ -+ ../../../platform_binding/../../base/fsm.h \ -+ ../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../../platform_binding/memory.h \ -+ ../../../platform_binding/constraint.h \ -+ ../../../platform_binding/networkinterface.h \ -+ ../../../platform_binding/connection.h \ -+ ../../base_platform/tile/graph_binding.h \ -+ ../../base_platform/tile/../../../platform_binding/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_base_flow.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_base_flow.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_base_flow.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_base_flow.d 2022-01-07 15:13:35.351457486 +0800 -@@ -0,0 +1,245 @@ -+fsmsadf_resource_allocation_flow_virtual_platform_base_flow.o: flow.cc flow.h ../../base_platform/base/flow.h \ -+ ../../base_platform/base/../memory/memory.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/component.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/base.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/exception.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/xml/xml.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/math/cmath.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/random/random.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/sort/sort.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/time/time.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/log/log.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/memorytype.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/sdf.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/channel.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/actor.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/port.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/component.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/timed/channel.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/timed/actor.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/components.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/connected.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/cycle.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/dfs.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/hsdf/check.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/analysis.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/generate/generate.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/dot/dot.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/html.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/xml/xml.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/channel.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/actor.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/port.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/type.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/scenario.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/component.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../../base/fsm.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../base_platform/base/../tile/binding.h \ -+ ../../base_platform/base/../tile/graph_binding.h \ -+ ../../base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../memory/memory.h ../memory/../../base_platform/memory/memory.h \ -+ ../memory/../../../platform_binding/graph.h ../tile/binding.h \ -+ ../tile/../../base_platform/tile/binding.h \ -+ ../tile/../../base_platform/tile/graph_binding.h ../tile/graph_binding.h \ -+ ../tile/../../../platform_binding/graph.h ../../../../output/html/html.h \ -+ ../../../../output/html/../../resource_allocation/flow/base_platform/base/flow.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_binding_aware_graph_binding_aware_graph.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_binding_aware_graph_binding_aware_graph.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_binding_aware_graph_binding_aware_graph.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_binding_aware_graph_binding_aware_graph.d 2022-01-07 15:13:44.691488293 +0800 -@@ -0,0 +1,237 @@ -+fsmsadf_resource_allocation_flow_virtual_platform_binding_aware_graph_binding_aware_graph.o: binding_aware_graph.cc binding_aware_graph.h \ -+ ../../base_platform/binding_aware_graph/binding_aware_graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/tile.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/processor.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/tile.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/processor.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/component.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/base.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/exception/exception.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/xml/xml.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/math/cmath.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/random/random.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/sort/sort.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/time/time.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/log/log.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/memorytype.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/memory.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/connection.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/sdf.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/channel.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/actor.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/port.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/component.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/timed/channel.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/timed/actor.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/algo/components.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/algo/connected.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/algo/cycle.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/algo/dfs.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/hsdf/check.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/analysis.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/generate/generate.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/dot/dot.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/html.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/xml/xml.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/channel.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/actor.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/port.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/type.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/scenario.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/component.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../../base/fsm.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/memory.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/constraint.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/networkinterface.h \ -+ ../../base_platform/binding_aware_graph/../../../platform_binding/connection.h \ -+ ../../../platform_binding/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_conversion_input_conversion.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_conversion_input_conversion.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_conversion_input_conversion.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_conversion_input_conversion.d 2022-01-07 15:13:46.931495974 +0800 -@@ -0,0 +1,27 @@ -+fsmsadf_resource_allocation_flow_virtual_platform_conversion_input_conversion.o: input_conversion.cc input_conversion.h \ -+ ../../../../../base/exception/exception.h \ -+ ../../../../../base/exception/../string/cstring.h \ -+ ../../../../../base/exception/../string/../basic_types.h \ -+ ../../../../../base/exception/../basic_types.h \ -+ ../../base_platform/conversion/input_conversion.h \ -+ ../../base_platform/conversion/../../../../../base/xml/xml.h \ -+ ../../base_platform/conversion/../../../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h ../../../../../base/xml/xml.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_conversion_output_conversion.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_conversion_output_conversion.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_conversion_output_conversion.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_conversion_output_conversion.d 2022-01-07 15:13:47.648165125 +0800 -@@ -0,0 +1,31 @@ -+fsmsadf_resource_allocation_flow_virtual_platform_conversion_output_conversion.o: output_conversion.cc output_conversion.h \ -+ ../../../../../base/exception/exception.h \ -+ ../../../../../base/exception/../string/cstring.h \ -+ ../../../../../base/exception/../string/../basic_types.h \ -+ ../../../../../base/exception/../basic_types.h \ -+ ../../base_platform/conversion/output_conversion.h \ -+ ../../base_platform/conversion/../../../../../base/exception/exception.h \ -+ ../../base_platform/conversion/../../../../../base/xml/xml.h \ -+ ../../base_platform/conversion/../../../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h ../../../../../base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_memory_memory.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_memory_memory.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_memory_memory.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_memory_memory.d 2022-01-07 15:13:37.714798426 +0800 -@@ -0,0 +1,236 @@ -+fsmsadf_resource_allocation_flow_virtual_platform_memory_memory.o: memory.cc memory.h ../../base_platform/memory/memory.h \ -+ ../../base_platform/memory/../../../platform_binding/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/tile.h \ -+ ../../base_platform/memory/../../../platform_binding/processor.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/component.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/base.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/exception.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/xml/xml.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/math/cmath.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/random/random.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/sort/sort.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/time/time.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/log/log.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/../../base/memorytype.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../base_platform/memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/sdf.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/untimed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/untimed/channel.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/untimed/actor.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/untimed/port.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/untimed/component.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/timed/channel.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/timed/actor.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/algo/components.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/algo/connected.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/algo/cycle.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/algo/dfs.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/hsdf/check.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/analysis.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/generate/generate.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/dot/dot.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/html/html.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/xml/xml.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/channel.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/actor.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/port.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/type.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/scenario.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/component.h \ -+ ../../base_platform/memory/../../../platform_binding/../../base/fsm.h \ -+ ../../base_platform/memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../base_platform/memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../base_platform/memory/../../../platform_binding/memory.h \ -+ ../../base_platform/memory/../../../platform_binding/constraint.h \ -+ ../../base_platform/memory/../../../platform_binding/networkinterface.h \ -+ ../../base_platform/memory/../../../platform_binding/connection.h \ -+ ../../../platform_binding/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_tile_binding.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_tile_binding.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_tile_binding.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_tile_binding.d 2022-01-07 15:13:39.788138539 +0800 -@@ -0,0 +1,262 @@ -+fsmsadf_resource_allocation_flow_virtual_platform_tile_binding.o: binding.cc binding.h ../../base_platform/tile/binding.h \ -+ ../../base_platform/tile/graph_binding.h \ -+ ../../base_platform/tile/../../../platform_binding/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/tile.h \ -+ ../../base_platform/tile/../../../platform_binding/processor.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/tile.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/processor.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/component.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/base.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/exception/exception.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/xml/xml.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/math/cmath.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/random/random.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/sort/sort.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/time/time.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/log/log.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/../../base/memorytype.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/memory.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../base_platform/tile/../../../platform_binding/../platform_graph/connection.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/sdf.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/channel.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/actor.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/port.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/component.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/timed/channel.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/timed/actor.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/algo/components.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/algo/connected.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/algo/cycle.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/algo/dfs.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/hsdf/check.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/analysis.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/generate/generate.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/dot/dot.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/html.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/xml/xml.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/channel.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/actor.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/port.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/type.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/scenario.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/component.h \ -+ ../../base_platform/tile/../../../platform_binding/../../base/fsm.h \ -+ ../../base_platform/tile/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../base_platform/tile/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../base_platform/tile/../../../platform_binding/memory.h \ -+ ../../base_platform/tile/../../../platform_binding/constraint.h \ -+ ../../base_platform/tile/../../../platform_binding/networkinterface.h \ -+ ../../base_platform/tile/../../../platform_binding/connection.h \ -+ ../../base_platform/tile/graph_binding.h graph_binding.h \ -+ ../../../platform_binding/graph.h \ -+ ../binding_aware_graph/binding_aware_graph.h \ -+ ../binding_aware_graph/../../base_platform/binding_aware_graph/binding_aware_graph.h \ -+ ../binding_aware_graph/../../base_platform/binding_aware_graph/../../../platform_binding/graph.h \ -+ ../binding_aware_graph/../../../platform_binding/graph.h \ -+ ../../../../analysis/base/repetition_vector.h \ -+ ../../../../analysis/base/../../../base/base.h \ -+ ../../../../analysis/base/../../base/graph.h \ -+ ../../../scheduling/earliest_deadline_first/edf.h \ -+ ../../../scheduling/earliest_deadline_first/precedence_graph.h \ -+ ../../../scheduling/earliest_deadline_first/../../../base/graph.h \ -+ ../../../scheduling/earliest_deadline_first/../../flow/base_platform/binding_aware_graph/binding_aware_graph.h \ -+ ../../../../analysis/throughput/throughput.h \ -+ ../../../../analysis/throughput/scenariograph.h \ -+ ../../../../analysis/throughput/../../base/graph.h \ -+ ../../../../analysis/throughput/fsm_ref_schedule.h \ -+ ../../../../analysis/throughput/fsm_scenario_transitions.h \ -+ ../../../../analysis/throughput/statespace.h \ -+ ../../../../analysis/throughput/../../base/fsm.h \ -+ ../../../../analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../../../analysis/throughput/maxplusautomaton.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_tile_graph_binding.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_tile_graph_binding.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_tile_graph_binding.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_flow_virtual_platform_tile_graph_binding.d 2022-01-07 15:13:42.501480892 +0800 -@@ -0,0 +1,236 @@ -+fsmsadf_resource_allocation_flow_virtual_platform_tile_graph_binding.o: graph_binding.cc graph_binding.h \ -+ ../../../platform_binding/graph.h ../../../platform_binding/tile.h \ -+ ../../../platform_binding/processor.h \ -+ ../../../platform_binding/../platform_graph/graph.h \ -+ ../../../platform_binding/../platform_graph/tile.h \ -+ ../../../platform_binding/../platform_graph/processor.h \ -+ ../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../../platform_binding/../platform_graph/../../base/component.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/base.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/exception.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/xml/xml.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/math/cmath.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/random/random.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/sort/sort.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/time/time.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/log/log.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../../../platform_binding/../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../../../platform_binding/../platform_graph/../../base/memorytype.h \ -+ ../../../platform_binding/../platform_graph/memory.h \ -+ ../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../../platform_binding/../platform_graph/connection.h \ -+ ../../../platform_binding/../../base/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/sdf.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/channel.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/actor.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/port.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/component.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../../platform_binding/../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/channel.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/timed_types.h \ -+ ../../../platform_binding/../../base/../../sdf/base/timed/actor.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/acyclic.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/components.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/connected.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/cycle.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/dfs.h \ -+ ../../../platform_binding/../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../../platform_binding/../../base/../../sdf/base/hsdf/check.h \ -+ ../../../platform_binding/../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/analysis.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/latency.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../../platform_binding/../../base/../../sdf/generate/generate.h \ -+ ../../../platform_binding/../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../../platform_binding/../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/dot/dot.h \ -+ ../../../platform_binding/../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/hapi/hapi.h \ -+ ../../../platform_binding/../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/html.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../../platform_binding/../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../../platform_binding/../../base/../../sdf/output/schedule/schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/output/xml/xml.h \ -+ ../../../platform_binding/../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../../platform_binding/../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/autoconc.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/buffersize.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../../platform_binding/../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../../platform_binding/../../base/channel.h \ -+ ../../../platform_binding/../../base/actor.h \ -+ ../../../platform_binding/../../base/port.h \ -+ ../../../platform_binding/../../base/type.h \ -+ ../../../platform_binding/../../base/scenario.h \ -+ ../../../platform_binding/../../base/component.h \ -+ ../../../platform_binding/../../base/fsm.h \ -+ ../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../../platform_binding/memory.h \ -+ ../../../platform_binding/constraint.h \ -+ ../../../platform_binding/networkinterface.h \ -+ ../../../platform_binding/connection.h \ -+ ../../base_platform/tile/graph_binding.h \ -+ ../../base_platform/tile/../../../platform_binding/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_connection.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_connection.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_connection.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_connection.d 2022-01-07 15:12:45.964662137 +0800 -@@ -0,0 +1,220 @@ -+fsmsadf_resource_allocation_platform_binding_connection.o: connection.cc connection.h ../platform_graph/graph.h \ -+ ../platform_graph/tile.h ../platform_graph/processor.h \ -+ ../platform_graph/../../base/type.h \ -+ ../platform_graph/../../base/component.h \ -+ ../platform_graph/../../base/../../base/base.h \ -+ ../platform_graph/../../base/../../base/exception/exception.h \ -+ ../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/xml/xml.h \ -+ ../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/math/cmath.h \ -+ ../platform_graph/../../base/../../base/random/random.h \ -+ ../platform_graph/../../base/../../base/sort/sort.h \ -+ ../platform_graph/../../base/../../base/time/time.h \ -+ ../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/log/log.h \ -+ ../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../platform_graph/../../base/memorytype.h ../platform_graph/memory.h \ -+ ../platform_graph/networkinterface.h ../platform_graph/connection.h \ -+ ../../base/graph.h ../../base/../../sdf/sdf.h \ -+ ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/actor.h ../../base/port.h \ -+ ../../base/type.h ../../base/scenario.h ../../base/component.h \ -+ ../../base/fsm.h graph.h tile.h processor.h \ -+ ../scheduling/static_order/static_order_schedule.h \ -+ ../scheduling/static_order/../../../base/graph.h memory.h constraint.h \ -+ networkinterface.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_constraint.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_constraint.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_constraint.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_constraint.d 2022-01-07 15:12:48.244666765 +0800 -@@ -0,0 +1,210 @@ -+fsmsadf_resource_allocation_platform_binding_constraint.o: constraint.cc constraint.h ../../base/graph.h \ -+ ../../base/../../sdf/sdf.h ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/exception.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/fraction.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/../../sdf/base/untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/../../sdf/base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/math/cmath.h \ -+ ../../base/../../sdf/base/untimed/../../../base/random/random.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sort/sort.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/time.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/log.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sequence/sequence.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/matrix/matrix.h \ -+ ../../base/../../sdf/base/untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/mptype.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/../../sdf/base/untimed/../../../base/lookup/clookup.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/actor.h ../../base/port.h \ -+ ../../base/type.h ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/memorytype.h ../../base/scenario.h ../../base/fsm.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_graph.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_graph.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_graph.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_graph.d 2022-01-07 15:12:50.358004504 +0800 -@@ -0,0 +1,219 @@ -+fsmsadf_resource_allocation_platform_binding_graph.o: graph.cc graph.h tile.h processor.h ../platform_graph/graph.h \ -+ ../platform_graph/tile.h ../platform_graph/processor.h \ -+ ../platform_graph/../../base/type.h \ -+ ../platform_graph/../../base/component.h \ -+ ../platform_graph/../../base/../../base/base.h \ -+ ../platform_graph/../../base/../../base/exception/exception.h \ -+ ../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/xml/xml.h \ -+ ../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/math/cmath.h \ -+ ../platform_graph/../../base/../../base/random/random.h \ -+ ../platform_graph/../../base/../../base/sort/sort.h \ -+ ../platform_graph/../../base/../../base/time/time.h \ -+ ../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/log/log.h \ -+ ../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../platform_graph/../../base/memorytype.h ../platform_graph/memory.h \ -+ ../platform_graph/networkinterface.h ../platform_graph/connection.h \ -+ ../../base/graph.h ../../base/../../sdf/sdf.h \ -+ ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/actor.h ../../base/port.h \ -+ ../../base/type.h ../../base/scenario.h ../../base/component.h \ -+ ../../base/fsm.h ../scheduling/static_order/static_order_schedule.h \ -+ ../scheduling/static_order/../../../base/graph.h memory.h constraint.h \ -+ networkinterface.h connection.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_memory.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_memory.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_memory.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_memory.d 2022-01-07 15:12:52.541342506 +0800 -@@ -0,0 +1,220 @@ -+fsmsadf_resource_allocation_platform_binding_memory.o: memory.cc memory.h ../platform_graph/graph.h \ -+ ../platform_graph/tile.h ../platform_graph/processor.h \ -+ ../platform_graph/../../base/type.h \ -+ ../platform_graph/../../base/component.h \ -+ ../platform_graph/../../base/../../base/base.h \ -+ ../platform_graph/../../base/../../base/exception/exception.h \ -+ ../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/xml/xml.h \ -+ ../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/math/cmath.h \ -+ ../platform_graph/../../base/../../base/random/random.h \ -+ ../platform_graph/../../base/../../base/sort/sort.h \ -+ ../platform_graph/../../base/../../base/time/time.h \ -+ ../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/log/log.h \ -+ ../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../platform_graph/../../base/memorytype.h ../platform_graph/memory.h \ -+ ../platform_graph/networkinterface.h ../platform_graph/connection.h \ -+ ../../base/graph.h ../../base/../../sdf/sdf.h \ -+ ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/actor.h ../../base/port.h \ -+ ../../base/type.h ../../base/scenario.h ../../base/component.h \ -+ ../../base/fsm.h constraint.h graph.h tile.h processor.h \ -+ ../scheduling/static_order/static_order_schedule.h \ -+ ../scheduling/static_order/../../../base/graph.h networkinterface.h \ -+ connection.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_networkinterface.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_networkinterface.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_networkinterface.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_networkinterface.d 2022-01-07 15:12:55.708016155 +0800 -@@ -0,0 +1,219 @@ -+fsmsadf_resource_allocation_platform_binding_networkinterface.o: networkinterface.cc networkinterface.h \ -+ ../platform_graph/graph.h ../platform_graph/tile.h \ -+ ../platform_graph/processor.h ../platform_graph/../../base/type.h \ -+ ../platform_graph/../../base/component.h \ -+ ../platform_graph/../../base/../../base/base.h \ -+ ../platform_graph/../../base/../../base/exception/exception.h \ -+ ../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/xml/xml.h \ -+ ../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/math/cmath.h \ -+ ../platform_graph/../../base/../../base/random/random.h \ -+ ../platform_graph/../../base/../../base/sort/sort.h \ -+ ../platform_graph/../../base/../../base/time/time.h \ -+ ../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/log/log.h \ -+ ../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../platform_graph/../../base/memorytype.h ../platform_graph/memory.h \ -+ ../platform_graph/networkinterface.h ../platform_graph/connection.h \ -+ ../../base/graph.h ../../base/../../sdf/sdf.h \ -+ ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/actor.h ../../base/port.h \ -+ ../../base/type.h ../../base/scenario.h ../../base/component.h \ -+ ../../base/fsm.h constraint.h graph.h tile.h processor.h \ -+ ../scheduling/static_order/static_order_schedule.h \ -+ ../scheduling/static_order/../../../base/graph.h memory.h connection.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_processor.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_processor.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_processor.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_processor.d 2022-01-07 15:12:58.151355046 +0800 -@@ -0,0 +1,219 @@ -+fsmsadf_resource_allocation_platform_binding_processor.o: processor.cc processor.h ../platform_graph/graph.h \ -+ ../platform_graph/tile.h ../platform_graph/processor.h \ -+ ../platform_graph/../../base/type.h \ -+ ../platform_graph/../../base/component.h \ -+ ../platform_graph/../../base/../../base/base.h \ -+ ../platform_graph/../../base/../../base/exception/exception.h \ -+ ../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/xml/xml.h \ -+ ../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/math/cmath.h \ -+ ../platform_graph/../../base/../../base/random/random.h \ -+ ../platform_graph/../../base/../../base/sort/sort.h \ -+ ../platform_graph/../../base/../../base/time/time.h \ -+ ../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/log/log.h \ -+ ../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../platform_graph/../../base/memorytype.h ../platform_graph/memory.h \ -+ ../platform_graph/networkinterface.h ../platform_graph/connection.h \ -+ ../../base/graph.h ../../base/../../sdf/sdf.h \ -+ ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/actor.h ../../base/port.h \ -+ ../../base/type.h ../../base/scenario.h ../../base/component.h \ -+ ../../base/fsm.h ../scheduling/static_order/static_order_schedule.h \ -+ ../scheduling/static_order/../../../base/graph.h graph.h tile.h memory.h \ -+ constraint.h networkinterface.h connection.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_tile.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_tile.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_tile.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_binding_tile.d 2022-01-07 15:13:00.864694724 +0800 -@@ -0,0 +1,219 @@ -+fsmsadf_resource_allocation_platform_binding_tile.o: tile.cc tile.h processor.h ../platform_graph/graph.h \ -+ ../platform_graph/tile.h ../platform_graph/processor.h \ -+ ../platform_graph/../../base/type.h \ -+ ../platform_graph/../../base/component.h \ -+ ../platform_graph/../../base/../../base/base.h \ -+ ../platform_graph/../../base/../../base/exception/exception.h \ -+ ../platform_graph/../../base/../../base/exception/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/exception/../string/../basic_types.h \ -+ ../platform_graph/../../base/../../base/exception/../basic_types.h \ -+ ../platform_graph/../../base/../../base/fraction/fraction.h \ -+ ../platform_graph/../../base/../../base/fraction/../basic_types.h \ -+ ../platform_graph/../../base/../../base/fraction/../math/cmath.h \ -+ ../platform_graph/../../base/../../base/fraction/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/xml/xml.h \ -+ ../platform_graph/../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../platform_graph/../../base/../../base/tempfile/tempfile.h \ -+ ../platform_graph/../../base/../../base/tempfile/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/math/cmath.h \ -+ ../platform_graph/../../base/../../base/random/random.h \ -+ ../platform_graph/../../base/../../base/sort/sort.h \ -+ ../platform_graph/../../base/../../base/time/time.h \ -+ ../platform_graph/../../base/../../base/time/../basic_types.h \ -+ ../platform_graph/../../base/../../base/time/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/log/log.h \ -+ ../platform_graph/../../base/../../base/log/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/log/../basic_types.h \ -+ ../platform_graph/../../base/../../base/sequence/sequence.h \ -+ ../platform_graph/../../base/../../base/sequence/../basic_types.h \ -+ ../platform_graph/../../base/../../base/matrix/matrix.h \ -+ ../platform_graph/../../base/../../base/matrix/../basic_types.h \ -+ ../platform_graph/../../base/../../base/maxplus/maxplus.h \ -+ ../platform_graph/../../base/../../base/maxplus/mptype.h \ -+ ../platform_graph/../../base/../../base/maxplus/../basic_types.h \ -+ ../platform_graph/../../base/../../base/maxplus/../string/cstring.h \ -+ ../platform_graph/../../base/../../base/maxplus/mpmatrix.h \ -+ ../platform_graph/../../base/../../base/lookup/clookup.h \ -+ ../platform_graph/../../base/memorytype.h ../platform_graph/memory.h \ -+ ../platform_graph/networkinterface.h ../platform_graph/connection.h \ -+ ../../base/graph.h ../../base/../../sdf/sdf.h \ -+ ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/actor.h ../../base/port.h \ -+ ../../base/type.h ../../base/scenario.h ../../base/component.h \ -+ ../../base/fsm.h ../scheduling/static_order/static_order_schedule.h \ -+ ../scheduling/static_order/../../../base/graph.h memory.h constraint.h \ -+ networkinterface.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_graph_connection.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_graph_connection.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_graph_connection.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_graph_connection.d 2022-01-07 15:12:39.041315565 +0800 -@@ -0,0 +1,51 @@ -+fsmsadf_resource_allocation_platform_graph_connection.o: connection.cc connection.h ../../base/type.h \ -+ ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/../../base/exception/exception.h \ -+ ../../base/../../base/exception/../string/cstring.h \ -+ ../../base/../../base/exception/../string/../basic_types.h \ -+ ../../base/../../base/exception/../basic_types.h \ -+ ../../base/../../base/fraction/fraction.h \ -+ ../../base/../../base/fraction/../basic_types.h \ -+ ../../base/../../base/fraction/../math/cmath.h \ -+ ../../base/../../base/fraction/../string/cstring.h \ -+ ../../base/../../base/xml/xml.h \ -+ ../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/../../base/tempfile/tempfile.h \ -+ ../../base/../../base/tempfile/../string/cstring.h \ -+ ../../base/../../base/math/cmath.h ../../base/../../base/random/random.h \ -+ ../../base/../../base/sort/sort.h ../../base/../../base/time/time.h \ -+ ../../base/../../base/time/../basic_types.h \ -+ ../../base/../../base/time/../string/cstring.h \ -+ ../../base/../../base/log/log.h \ -+ ../../base/../../base/log/../string/cstring.h \ -+ ../../base/../../base/log/../basic_types.h \ -+ ../../base/../../base/sequence/sequence.h \ -+ ../../base/../../base/sequence/../basic_types.h \ -+ ../../base/../../base/matrix/matrix.h \ -+ ../../base/../../base/matrix/../basic_types.h \ -+ ../../base/../../base/maxplus/maxplus.h \ -+ ../../base/../../base/maxplus/mptype.h \ -+ ../../base/../../base/maxplus/../basic_types.h \ -+ ../../base/../../base/maxplus/../string/cstring.h \ -+ ../../base/../../base/maxplus/mpmatrix.h \ -+ ../../base/../../base/lookup/clookup.h ../../base/memorytype.h graph.h \ -+ tile.h processor.h memory.h networkinterface.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_graph_graph.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_graph_graph.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_graph_graph.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_graph_graph.d 2022-01-07 15:12:40.141317588 +0800 -@@ -0,0 +1,51 @@ -+fsmsadf_resource_allocation_platform_graph_graph.o: graph.cc graph.h tile.h processor.h ../../base/type.h \ -+ ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/../../base/exception/exception.h \ -+ ../../base/../../base/exception/../string/cstring.h \ -+ ../../base/../../base/exception/../string/../basic_types.h \ -+ ../../base/../../base/exception/../basic_types.h \ -+ ../../base/../../base/fraction/fraction.h \ -+ ../../base/../../base/fraction/../basic_types.h \ -+ ../../base/../../base/fraction/../math/cmath.h \ -+ ../../base/../../base/fraction/../string/cstring.h \ -+ ../../base/../../base/xml/xml.h \ -+ ../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/../../base/tempfile/tempfile.h \ -+ ../../base/../../base/tempfile/../string/cstring.h \ -+ ../../base/../../base/math/cmath.h ../../base/../../base/random/random.h \ -+ ../../base/../../base/sort/sort.h ../../base/../../base/time/time.h \ -+ ../../base/../../base/time/../basic_types.h \ -+ ../../base/../../base/time/../string/cstring.h \ -+ ../../base/../../base/log/log.h \ -+ ../../base/../../base/log/../string/cstring.h \ -+ ../../base/../../base/log/../basic_types.h \ -+ ../../base/../../base/sequence/sequence.h \ -+ ../../base/../../base/sequence/../basic_types.h \ -+ ../../base/../../base/matrix/matrix.h \ -+ ../../base/../../base/matrix/../basic_types.h \ -+ ../../base/../../base/maxplus/maxplus.h \ -+ ../../base/../../base/maxplus/mptype.h \ -+ ../../base/../../base/maxplus/../basic_types.h \ -+ ../../base/../../base/maxplus/../string/cstring.h \ -+ ../../base/../../base/maxplus/mpmatrix.h \ -+ ../../base/../../base/lookup/clookup.h ../../base/memorytype.h memory.h \ -+ networkinterface.h connection.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_graph_memory.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_graph_memory.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_graph_memory.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_graph_memory.d 2022-01-07 15:12:41.367986547 +0800 -@@ -0,0 +1,49 @@ -+fsmsadf_resource_allocation_platform_graph_memory.o: memory.cc memory.h ../../base/type.h ../../base/component.h \ -+ ../../base/../../base/base.h ../../base/../../base/exception/exception.h \ -+ ../../base/../../base/exception/../string/cstring.h \ -+ ../../base/../../base/exception/../string/../basic_types.h \ -+ ../../base/../../base/exception/../basic_types.h \ -+ ../../base/../../base/fraction/fraction.h \ -+ ../../base/../../base/fraction/../basic_types.h \ -+ ../../base/../../base/fraction/../math/cmath.h \ -+ ../../base/../../base/fraction/../string/cstring.h \ -+ ../../base/../../base/xml/xml.h \ -+ ../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/../../base/tempfile/tempfile.h \ -+ ../../base/../../base/tempfile/../string/cstring.h \ -+ ../../base/../../base/math/cmath.h ../../base/../../base/random/random.h \ -+ ../../base/../../base/sort/sort.h ../../base/../../base/time/time.h \ -+ ../../base/../../base/time/../basic_types.h \ -+ ../../base/../../base/time/../string/cstring.h \ -+ ../../base/../../base/log/log.h \ -+ ../../base/../../base/log/../string/cstring.h \ -+ ../../base/../../base/log/../basic_types.h \ -+ ../../base/../../base/sequence/sequence.h \ -+ ../../base/../../base/sequence/../basic_types.h \ -+ ../../base/../../base/matrix/matrix.h \ -+ ../../base/../../base/matrix/../basic_types.h \ -+ ../../base/../../base/maxplus/maxplus.h \ -+ ../../base/../../base/maxplus/mptype.h \ -+ ../../base/../../base/maxplus/../basic_types.h \ -+ ../../base/../../base/maxplus/../string/cstring.h \ -+ ../../base/../../base/maxplus/mpmatrix.h \ -+ ../../base/../../base/lookup/clookup.h ../../base/memorytype.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_graph_networkinterface.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_graph_networkinterface.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_graph_networkinterface.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_graph_networkinterface.d 2022-01-07 15:12:42.377988462 +0800 -@@ -0,0 +1,51 @@ -+fsmsadf_resource_allocation_platform_graph_networkinterface.o: networkinterface.cc networkinterface.h \ -+ ../../base/type.h ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/../../base/exception/exception.h \ -+ ../../base/../../base/exception/../string/cstring.h \ -+ ../../base/../../base/exception/../string/../basic_types.h \ -+ ../../base/../../base/exception/../basic_types.h \ -+ ../../base/../../base/fraction/fraction.h \ -+ ../../base/../../base/fraction/../basic_types.h \ -+ ../../base/../../base/fraction/../math/cmath.h \ -+ ../../base/../../base/fraction/../string/cstring.h \ -+ ../../base/../../base/xml/xml.h \ -+ ../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/../../base/tempfile/tempfile.h \ -+ ../../base/../../base/tempfile/../string/cstring.h \ -+ ../../base/../../base/math/cmath.h ../../base/../../base/random/random.h \ -+ ../../base/../../base/sort/sort.h ../../base/../../base/time/time.h \ -+ ../../base/../../base/time/../basic_types.h \ -+ ../../base/../../base/time/../string/cstring.h \ -+ ../../base/../../base/log/log.h \ -+ ../../base/../../base/log/../string/cstring.h \ -+ ../../base/../../base/log/../basic_types.h \ -+ ../../base/../../base/sequence/sequence.h \ -+ ../../base/../../base/sequence/../basic_types.h \ -+ ../../base/../../base/matrix/matrix.h \ -+ ../../base/../../base/matrix/../basic_types.h \ -+ ../../base/../../base/maxplus/maxplus.h \ -+ ../../base/../../base/maxplus/mptype.h \ -+ ../../base/../../base/maxplus/../basic_types.h \ -+ ../../base/../../base/maxplus/../string/cstring.h \ -+ ../../base/../../base/maxplus/mpmatrix.h \ -+ ../../base/../../base/lookup/clookup.h ../../base/memorytype.h \ -+ connection.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_graph_processor.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_graph_processor.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_graph_processor.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_graph_processor.d 2022-01-07 15:12:43.417990462 +0800 -@@ -0,0 +1,50 @@ -+fsmsadf_resource_allocation_platform_graph_processor.o: processor.cc processor.h ../../base/type.h \ -+ ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/../../base/exception/exception.h \ -+ ../../base/../../base/exception/../string/cstring.h \ -+ ../../base/../../base/exception/../string/../basic_types.h \ -+ ../../base/../../base/exception/../basic_types.h \ -+ ../../base/../../base/fraction/fraction.h \ -+ ../../base/../../base/fraction/../basic_types.h \ -+ ../../base/../../base/fraction/../math/cmath.h \ -+ ../../base/../../base/fraction/../string/cstring.h \ -+ ../../base/../../base/xml/xml.h \ -+ ../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/../../base/tempfile/tempfile.h \ -+ ../../base/../../base/tempfile/../string/cstring.h \ -+ ../../base/../../base/math/cmath.h ../../base/../../base/random/random.h \ -+ ../../base/../../base/sort/sort.h ../../base/../../base/time/time.h \ -+ ../../base/../../base/time/../basic_types.h \ -+ ../../base/../../base/time/../string/cstring.h \ -+ ../../base/../../base/log/log.h \ -+ ../../base/../../base/log/../string/cstring.h \ -+ ../../base/../../base/log/../basic_types.h \ -+ ../../base/../../base/sequence/sequence.h \ -+ ../../base/../../base/sequence/../basic_types.h \ -+ ../../base/../../base/matrix/matrix.h \ -+ ../../base/../../base/matrix/../basic_types.h \ -+ ../../base/../../base/maxplus/maxplus.h \ -+ ../../base/../../base/maxplus/mptype.h \ -+ ../../base/../../base/maxplus/../basic_types.h \ -+ ../../base/../../base/maxplus/../string/cstring.h \ -+ ../../base/../../base/maxplus/mpmatrix.h \ -+ ../../base/../../base/lookup/clookup.h ../../base/memorytype.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_graph_tile.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_graph_tile.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_graph_tile.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_platform_graph_tile.d 2022-01-07 15:12:44.457992489 +0800 -@@ -0,0 +1,51 @@ -+fsmsadf_resource_allocation_platform_graph_tile.o: tile.cc tile.h processor.h ../../base/type.h \ -+ ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/../../base/exception/exception.h \ -+ ../../base/../../base/exception/../string/cstring.h \ -+ ../../base/../../base/exception/../string/../basic_types.h \ -+ ../../base/../../base/exception/../basic_types.h \ -+ ../../base/../../base/fraction/fraction.h \ -+ ../../base/../../base/fraction/../basic_types.h \ -+ ../../base/../../base/fraction/../math/cmath.h \ -+ ../../base/../../base/fraction/../string/cstring.h \ -+ ../../base/../../base/xml/xml.h \ -+ ../../base/../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/../../base/tempfile/tempfile.h \ -+ ../../base/../../base/tempfile/../string/cstring.h \ -+ ../../base/../../base/math/cmath.h ../../base/../../base/random/random.h \ -+ ../../base/../../base/sort/sort.h ../../base/../../base/time/time.h \ -+ ../../base/../../base/time/../basic_types.h \ -+ ../../base/../../base/time/../string/cstring.h \ -+ ../../base/../../base/log/log.h \ -+ ../../base/../../base/log/../string/cstring.h \ -+ ../../base/../../base/log/../basic_types.h \ -+ ../../base/../../base/sequence/sequence.h \ -+ ../../base/../../base/sequence/../basic_types.h \ -+ ../../base/../../base/matrix/matrix.h \ -+ ../../base/../../base/matrix/../basic_types.h \ -+ ../../base/../../base/maxplus/maxplus.h \ -+ ../../base/../../base/maxplus/mptype.h \ -+ ../../base/../../base/maxplus/../basic_types.h \ -+ ../../base/../../base/maxplus/../string/cstring.h \ -+ ../../base/../../base/maxplus/mpmatrix.h \ -+ ../../base/../../base/lookup/clookup.h ../../base/memorytype.h memory.h \ -+ networkinterface.h connection.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_scheduling_earliest_deadline_first_edf.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_scheduling_earliest_deadline_first_edf.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_scheduling_earliest_deadline_first_edf.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_scheduling_earliest_deadline_first_edf.d 2022-01-07 15:13:05.568039486 +0800 -@@ -0,0 +1,230 @@ -+fsmsadf_resource_allocation_scheduling_earliest_deadline_first_edf.o: edf.cc edf.h precedence_graph.h ../../../base/graph.h \ -+ ../../../base/../../sdf/sdf.h \ -+ ../../../base/../../sdf/base/untimed/graph.h \ -+ ../../../base/../../sdf/base/untimed/channel.h \ -+ ../../../base/../../sdf/base/untimed/actor.h \ -+ ../../../base/../../sdf/base/untimed/port.h \ -+ ../../../base/../../sdf/base/untimed/component.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/exception/exception.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/exception/../string/cstring.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/exception/../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/fraction/fraction.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/fraction/../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/tempfile/tempfile.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/math/cmath.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/random/random.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/sort/sort.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/time/time.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/time/../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/time/../string/cstring.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/log/log.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/log/../string/cstring.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/log/../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/sequence/sequence.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/sequence/../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/matrix/matrix.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/matrix/../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/maxplus/maxplus.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/maxplus/mptype.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/maxplus/../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/lookup/clookup.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../../base/../../sdf/base/timed/graph.h \ -+ ../../../base/../../sdf/base/timed/channel.h \ -+ ../../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../../base/../../sdf/base/timed/timed_types.h \ -+ ../../../base/../../sdf/base/timed/actor.h \ -+ ../../../base/../../sdf/base/algo/acyclic.h \ -+ ../../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../../base/../../sdf/base/algo/components.h \ -+ ../../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../../base/../../sdf/base/algo/connected.h \ -+ ../../../base/../../sdf/base/algo/cycle.h \ -+ ../../../base/../../sdf/base/algo/dfs.h \ -+ ../../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../../base/../../sdf/base/hsdf/check.h \ -+ ../../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../../base/../../sdf/analysis/analysis.h \ -+ ../../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/latency/latency.h \ -+ ../../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../../base/../../sdf/generate/generate.h \ -+ ../../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../../base/../../sdf/output/dot/dot.h \ -+ ../../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../../base/../../sdf/output/hapi/hapi.h \ -+ ../../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../../base/../../sdf/output/html/html.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../../base/../../sdf/output/schedule/schedule.h \ -+ ../../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../../base/../../sdf/output/xml/xml.h \ -+ ../../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../base/../../sdf/transform/model/autoconc.h \ -+ ../../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../../base/../../sdf/transform/model/buffersize.h \ -+ ../../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../../base/channel.h ../../../base/actor.h ../../../base/port.h \ -+ ../../../base/type.h ../../../base/component.h \ -+ ../../../base/../../base/base.h ../../../base/memorytype.h \ -+ ../../../base/scenario.h ../../../base/fsm.h \ -+ ../../flow/base_platform/binding_aware_graph/binding_aware_graph.h \ -+ ../../flow/base_platform/binding_aware_graph/../../../platform_binding/graph.h \ -+ ../../flow/base_platform/binding_aware_graph/../../../platform_binding/tile.h \ -+ ../../flow/base_platform/binding_aware_graph/../../../platform_binding/processor.h \ -+ ../../flow/base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/graph.h \ -+ ../../flow/base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/tile.h \ -+ ../../flow/base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/processor.h \ -+ ../../flow/base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../flow/base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/memory.h \ -+ ../../flow/base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../flow/base_platform/binding_aware_graph/../../../platform_binding/../platform_graph/connection.h \ -+ ../../flow/base_platform/binding_aware_graph/../../../platform_binding/../../base/graph.h \ -+ ../../flow/base_platform/binding_aware_graph/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../flow/base_platform/binding_aware_graph/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../flow/base_platform/binding_aware_graph/../../../platform_binding/memory.h \ -+ ../../flow/base_platform/binding_aware_graph/../../../platform_binding/constraint.h \ -+ ../../flow/base_platform/binding_aware_graph/../../../platform_binding/networkinterface.h \ -+ ../../flow/base_platform/binding_aware_graph/../../../platform_binding/connection.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_scheduling_earliest_deadline_first_precedence_graph.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_scheduling_earliest_deadline_first_precedence_graph.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_scheduling_earliest_deadline_first_precedence_graph.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_scheduling_earliest_deadline_first_precedence_graph.d 2022-01-07 15:13:07.704711521 +0800 -@@ -0,0 +1,215 @@ -+fsmsadf_resource_allocation_scheduling_earliest_deadline_first_precedence_graph.o: precedence_graph.cc precedence_graph.h \ -+ ../../../base/graph.h ../../../base/../../sdf/sdf.h \ -+ ../../../base/../../sdf/base/untimed/graph.h \ -+ ../../../base/../../sdf/base/untimed/channel.h \ -+ ../../../base/../../sdf/base/untimed/actor.h \ -+ ../../../base/../../sdf/base/untimed/port.h \ -+ ../../../base/../../sdf/base/untimed/component.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/exception/exception.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/exception/../string/cstring.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/exception/../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/fraction/fraction.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/fraction/../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/tempfile/tempfile.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/math/cmath.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/random/random.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/sort/sort.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/time/time.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/time/../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/time/../string/cstring.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/log/log.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/log/../string/cstring.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/log/../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/sequence/sequence.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/sequence/../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/matrix/matrix.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/matrix/../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/maxplus/maxplus.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/maxplus/mptype.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/maxplus/../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/lookup/clookup.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../../base/../../sdf/base/timed/graph.h \ -+ ../../../base/../../sdf/base/timed/channel.h \ -+ ../../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../../base/../../sdf/base/timed/timed_types.h \ -+ ../../../base/../../sdf/base/timed/actor.h \ -+ ../../../base/../../sdf/base/algo/acyclic.h \ -+ ../../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../../base/../../sdf/base/algo/components.h \ -+ ../../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../../base/../../sdf/base/algo/connected.h \ -+ ../../../base/../../sdf/base/algo/cycle.h \ -+ ../../../base/../../sdf/base/algo/dfs.h \ -+ ../../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../../base/../../sdf/base/hsdf/check.h \ -+ ../../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../../base/../../sdf/analysis/analysis.h \ -+ ../../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/latency/latency.h \ -+ ../../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../../base/../../sdf/generate/generate.h \ -+ ../../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../../base/../../sdf/output/dot/dot.h \ -+ ../../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../../base/../../sdf/output/hapi/hapi.h \ -+ ../../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../../base/../../sdf/output/html/html.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../../base/../../sdf/output/schedule/schedule.h \ -+ ../../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../../base/../../sdf/output/xml/xml.h \ -+ ../../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../base/../../sdf/transform/model/autoconc.h \ -+ ../../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../../base/../../sdf/transform/model/buffersize.h \ -+ ../../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../../base/channel.h ../../../base/actor.h ../../../base/port.h \ -+ ../../../base/type.h ../../../base/component.h \ -+ ../../../base/../../base/base.h ../../../base/memorytype.h \ -+ ../../../base/scenario.h ../../../base/fsm.h \ -+ ../../../analysis/base/repetition_vector.h \ -+ ../../../analysis/base/../../../base/base.h \ -+ ../../../analysis/base/../../base/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_scheduling_static_order_static_order_schedule.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_scheduling_static_order_static_order_schedule.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_scheduling_static_order_static_order_schedule.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_resource_allocation_scheduling_static_order_static_order_schedule.d 2022-01-07 15:13:03.238033757 +0800 -@@ -0,0 +1,215 @@ -+fsmsadf_resource_allocation_scheduling_static_order_static_order_schedule.o: static_order_schedule.cc static_order_schedule.h \ -+ ../../../base/graph.h ../../../base/../../sdf/sdf.h \ -+ ../../../base/../../sdf/base/untimed/graph.h \ -+ ../../../base/../../sdf/base/untimed/channel.h \ -+ ../../../base/../../sdf/base/untimed/actor.h \ -+ ../../../base/../../sdf/base/untimed/port.h \ -+ ../../../base/../../sdf/base/untimed/component.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/exception/exception.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/exception/../string/cstring.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/exception/../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/fraction/fraction.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/fraction/../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/tempfile/tempfile.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/math/cmath.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/random/random.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/sort/sort.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/time/time.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/time/../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/time/../string/cstring.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/log/log.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/log/../string/cstring.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/log/../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/sequence/sequence.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/sequence/../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/matrix/matrix.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/matrix/../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/maxplus/maxplus.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/maxplus/mptype.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/maxplus/../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/lookup/clookup.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../../base/../../sdf/base/timed/graph.h \ -+ ../../../base/../../sdf/base/timed/channel.h \ -+ ../../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../../base/../../sdf/base/timed/timed_types.h \ -+ ../../../base/../../sdf/base/timed/actor.h \ -+ ../../../base/../../sdf/base/algo/acyclic.h \ -+ ../../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../../base/../../sdf/base/algo/components.h \ -+ ../../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../../base/../../sdf/base/algo/connected.h \ -+ ../../../base/../../sdf/base/algo/cycle.h \ -+ ../../../base/../../sdf/base/algo/dfs.h \ -+ ../../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../../base/../../sdf/base/hsdf/check.h \ -+ ../../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../../base/../../sdf/analysis/analysis.h \ -+ ../../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/latency/latency.h \ -+ ../../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../../base/../../sdf/generate/generate.h \ -+ ../../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../../base/../../sdf/output/dot/dot.h \ -+ ../../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../../base/../../sdf/output/hapi/hapi.h \ -+ ../../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../../base/../../sdf/output/html/html.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../../base/../../sdf/output/schedule/schedule.h \ -+ ../../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../../base/../../sdf/output/xml/xml.h \ -+ ../../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../base/../../sdf/transform/model/autoconc.h \ -+ ../../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../../base/../../sdf/transform/model/buffersize.h \ -+ ../../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../../base/channel.h ../../../base/actor.h ../../../base/port.h \ -+ ../../../base/type.h ../../../base/component.h \ -+ ../../../base/../../base/base.h ../../../base/memorytype.h \ -+ ../../../base/scenario.h ../../../base/fsm.h \ -+ ../../../analysis/base/repetition_vector.h \ -+ ../../../analysis/base/../../../base/base.h \ -+ ../../../analysis/base/../../base/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_tools_base_tools.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_tools_base_tools.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_tools_base_tools.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_tools_base_tools.d 2022-01-07 15:14:38.058367685 +0800 -@@ -0,0 +1,27 @@ -+fsmsadf_tools_base_tools.o: tools.cc tools.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3analyze_sdf3analyze.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3analyze_sdf3analyze.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3analyze_sdf3analyze.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3analyze_sdf3analyze.d 2022-01-07 15:14:39.775042189 +0800 -@@ -0,0 +1,271 @@ -+fsmsadf_tools_sdf3analyze_sdf3analyze.o: sdf3analyze.cc sdf3analyze.h ../../fsmsadf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ ../../base/actor.h ../../base/port.h ../../base/type.h \ -+ ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/memorytype.h ../../base/scenario.h ../../base/channel.h \ -+ ../../base/actor.h ../../base/graph.h ../../base/../../sdf/sdf.h \ -+ ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/fsm.h ../../base/port.h \ -+ ../../analysis/analysis.h ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/scenariograph.h \ -+ ../../analysis/throughput/../../base/graph.h \ -+ ../../analysis/throughput/fsm_ref_schedule.h \ -+ ../../analysis/throughput/fsm_scenario_transitions.h \ -+ ../../analysis/throughput/statespace.h \ -+ ../../analysis/throughput/../../base/fsm.h \ -+ ../../analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../analysis/throughput/maxplusautomaton.h \ -+ ../../analysis/maxplus/mpexplore.h \ -+ ../../analysis/maxplus/../base/repetition_vector.h \ -+ ../../analysis/maxplus/../base/../../../base/base.h \ -+ ../../analysis/maxplus/../base/../../base/graph.h \ -+ ../../analysis/maxplus/../../base/graph.h \ -+ ../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ ../../generate/generate.h ../../generate/../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/graph_binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../../resource_allocation/flow/virtual_platform/base/flow.h \ -+ ../../resource_allocation/flow/virtual_platform/base/../../base_platform/base/flow.h \ -+ ../../resource_allocation/flow/compsoc_platform/base/flow.h \ -+ ../../resource_allocation/flow/compsoc_platform/base/../../base_platform/base/flow.h \ -+ ../../resource_allocation/flow/mamps_platform/base/flow.h \ -+ ../../resource_allocation/flow/mamps_platform/base/../../base_platform/base/flow.h \ -+ ../../transform/transform.h ../../transform/worst-case/worst-case.h \ -+ ../../transform/worst-case/../../base/graph.h \ -+ ../../transform/auto-concurrency/auto-concurrency.h \ -+ ../../transform/auto-concurrency/../../base/graph.h \ -+ ../../output/html/html.h \ -+ ../../output/html/../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../base/tools.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ ../../../base/base.h ../../../sdf/sdf.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3flow-mnemee_sdf3flow.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3flow-mnemee_sdf3flow.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3flow-mnemee_sdf3flow.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3flow-mnemee_sdf3flow.d 2022-01-07 15:14:53.028438024 +0800 -@@ -0,0 +1,267 @@ -+fsmsadf_tools_sdf3flow-mnemee_sdf3flow.o: sdf3flow.cc sdf3flow.h settings.h ../../fsmsadf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ ../../base/actor.h ../../base/port.h ../../base/type.h \ -+ ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/memorytype.h ../../base/scenario.h ../../base/channel.h \ -+ ../../base/actor.h ../../base/graph.h ../../base/../../sdf/sdf.h \ -+ ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/fsm.h ../../base/port.h \ -+ ../../analysis/analysis.h ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/scenariograph.h \ -+ ../../analysis/throughput/../../base/graph.h \ -+ ../../analysis/throughput/fsm_ref_schedule.h \ -+ ../../analysis/throughput/fsm_scenario_transitions.h \ -+ ../../analysis/throughput/statespace.h \ -+ ../../analysis/throughput/../../base/fsm.h \ -+ ../../analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../analysis/throughput/maxplusautomaton.h \ -+ ../../analysis/maxplus/mpexplore.h \ -+ ../../analysis/maxplus/../base/repetition_vector.h \ -+ ../../analysis/maxplus/../base/../../../base/base.h \ -+ ../../analysis/maxplus/../base/../../base/graph.h \ -+ ../../analysis/maxplus/../../base/graph.h \ -+ ../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ ../../generate/generate.h ../../generate/../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/graph_binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../../resource_allocation/flow/virtual_platform/base/flow.h \ -+ ../../resource_allocation/flow/virtual_platform/base/../../base_platform/base/flow.h \ -+ ../../resource_allocation/flow/compsoc_platform/base/flow.h \ -+ ../../resource_allocation/flow/compsoc_platform/base/../../base_platform/base/flow.h \ -+ ../../resource_allocation/flow/mamps_platform/base/flow.h \ -+ ../../resource_allocation/flow/mamps_platform/base/../../base_platform/base/flow.h \ -+ ../../transform/transform.h ../../transform/worst-case/worst-case.h \ -+ ../../transform/worst-case/../../base/graph.h \ -+ ../../transform/auto-concurrency/auto-concurrency.h \ -+ ../../transform/auto-concurrency/../../base/graph.h \ -+ ../../output/html/html.h \ -+ ../../output/html/../../resource_allocation/flow/base_platform/base/flow.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3flow-mnemee_settings.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3flow-mnemee_settings.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3flow-mnemee_settings.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3flow-mnemee_settings.d 2022-01-07 15:14:56.051786105 +0800 -@@ -0,0 +1,267 @@ -+fsmsadf_tools_sdf3flow-mnemee_settings.o: settings.cc settings.h ../../fsmsadf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ ../../base/actor.h ../../base/port.h ../../base/type.h \ -+ ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/memorytype.h ../../base/scenario.h ../../base/channel.h \ -+ ../../base/actor.h ../../base/graph.h ../../base/../../sdf/sdf.h \ -+ ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/fsm.h ../../base/port.h \ -+ ../../analysis/analysis.h ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/scenariograph.h \ -+ ../../analysis/throughput/../../base/graph.h \ -+ ../../analysis/throughput/fsm_ref_schedule.h \ -+ ../../analysis/throughput/fsm_scenario_transitions.h \ -+ ../../analysis/throughput/statespace.h \ -+ ../../analysis/throughput/../../base/fsm.h \ -+ ../../analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../analysis/throughput/maxplusautomaton.h \ -+ ../../analysis/maxplus/mpexplore.h \ -+ ../../analysis/maxplus/../base/repetition_vector.h \ -+ ../../analysis/maxplus/../base/../../../base/base.h \ -+ ../../analysis/maxplus/../base/../../base/graph.h \ -+ ../../analysis/maxplus/../../base/graph.h \ -+ ../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ ../../generate/generate.h ../../generate/../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/graph_binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../../resource_allocation/flow/virtual_platform/base/flow.h \ -+ ../../resource_allocation/flow/virtual_platform/base/../../base_platform/base/flow.h \ -+ ../../resource_allocation/flow/compsoc_platform/base/flow.h \ -+ ../../resource_allocation/flow/compsoc_platform/base/../../base_platform/base/flow.h \ -+ ../../resource_allocation/flow/mamps_platform/base/flow.h \ -+ ../../resource_allocation/flow/mamps_platform/base/../../base_platform/base/flow.h \ -+ ../../transform/transform.h ../../transform/worst-case/worst-case.h \ -+ ../../transform/worst-case/../../base/graph.h \ -+ ../../transform/auto-concurrency/auto-concurrency.h \ -+ ../../transform/auto-concurrency/../../base/graph.h \ -+ ../../output/html/html.h \ -+ ../../output/html/../../resource_allocation/flow/base_platform/base/flow.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3flow_sdf3flow.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3flow_sdf3flow.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3flow_sdf3flow.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3flow_sdf3flow.d 2022-01-07 15:14:42.905056633 +0800 -@@ -0,0 +1,270 @@ -+fsmsadf_tools_sdf3flow_sdf3flow.o: sdf3flow.cc sdf3flow.h settings.h ../../fsmsadf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ ../../base/actor.h ../../base/port.h ../../base/type.h \ -+ ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/memorytype.h ../../base/scenario.h ../../base/channel.h \ -+ ../../base/actor.h ../../base/graph.h ../../base/../../sdf/sdf.h \ -+ ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/fsm.h ../../base/port.h \ -+ ../../analysis/analysis.h ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/scenariograph.h \ -+ ../../analysis/throughput/../../base/graph.h \ -+ ../../analysis/throughput/fsm_ref_schedule.h \ -+ ../../analysis/throughput/fsm_scenario_transitions.h \ -+ ../../analysis/throughput/statespace.h \ -+ ../../analysis/throughput/../../base/fsm.h \ -+ ../../analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../analysis/throughput/maxplusautomaton.h \ -+ ../../analysis/maxplus/mpexplore.h \ -+ ../../analysis/maxplus/../base/repetition_vector.h \ -+ ../../analysis/maxplus/../base/../../../base/base.h \ -+ ../../analysis/maxplus/../base/../../base/graph.h \ -+ ../../analysis/maxplus/../../base/graph.h \ -+ ../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ ../../generate/generate.h ../../generate/../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/graph_binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../../resource_allocation/flow/virtual_platform/base/flow.h \ -+ ../../resource_allocation/flow/virtual_platform/base/../../base_platform/base/flow.h \ -+ ../../resource_allocation/flow/compsoc_platform/base/flow.h \ -+ ../../resource_allocation/flow/compsoc_platform/base/../../base_platform/base/flow.h \ -+ ../../resource_allocation/flow/mamps_platform/base/flow.h \ -+ ../../resource_allocation/flow/mamps_platform/base/../../base_platform/base/flow.h \ -+ ../../transform/transform.h ../../transform/worst-case/worst-case.h \ -+ ../../transform/worst-case/../../base/graph.h \ -+ ../../transform/auto-concurrency/auto-concurrency.h \ -+ ../../transform/auto-concurrency/../../base/graph.h \ -+ ../../output/html/html.h \ -+ ../../output/html/../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../base/tools.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3flow_settings.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3flow_settings.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3flow_settings.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3flow_settings.d 2022-01-07 15:14:45.345068030 +0800 -@@ -0,0 +1,270 @@ -+fsmsadf_tools_sdf3flow_settings.o: settings.cc settings.h ../../fsmsadf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ ../../base/actor.h ../../base/port.h ../../base/type.h \ -+ ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/memorytype.h ../../base/scenario.h ../../base/channel.h \ -+ ../../base/actor.h ../../base/graph.h ../../base/../../sdf/sdf.h \ -+ ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/fsm.h ../../base/port.h \ -+ ../../analysis/analysis.h ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/scenariograph.h \ -+ ../../analysis/throughput/../../base/graph.h \ -+ ../../analysis/throughput/fsm_ref_schedule.h \ -+ ../../analysis/throughput/fsm_scenario_transitions.h \ -+ ../../analysis/throughput/statespace.h \ -+ ../../analysis/throughput/../../base/fsm.h \ -+ ../../analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../analysis/throughput/maxplusautomaton.h \ -+ ../../analysis/maxplus/mpexplore.h \ -+ ../../analysis/maxplus/../base/repetition_vector.h \ -+ ../../analysis/maxplus/../base/../../../base/base.h \ -+ ../../analysis/maxplus/../base/../../base/graph.h \ -+ ../../analysis/maxplus/../../base/graph.h \ -+ ../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ ../../generate/generate.h ../../generate/../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/graph_binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../../resource_allocation/flow/virtual_platform/base/flow.h \ -+ ../../resource_allocation/flow/virtual_platform/base/../../base_platform/base/flow.h \ -+ ../../resource_allocation/flow/compsoc_platform/base/flow.h \ -+ ../../resource_allocation/flow/compsoc_platform/base/../../base_platform/base/flow.h \ -+ ../../resource_allocation/flow/mamps_platform/base/flow.h \ -+ ../../resource_allocation/flow/mamps_platform/base/../../base_platform/base/flow.h \ -+ ../../transform/transform.h ../../transform/worst-case/worst-case.h \ -+ ../../transform/worst-case/../../base/graph.h \ -+ ../../transform/auto-concurrency/auto-concurrency.h \ -+ ../../transform/auto-concurrency/../../base/graph.h \ -+ ../../output/html/html.h \ -+ ../../output/html/../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../base/tools.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3generate_sdf3generate.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3generate_sdf3generate.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3generate_sdf3generate.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3generate_sdf3generate.d 2022-01-07 15:14:47.951747001 +0800 -@@ -0,0 +1,270 @@ -+fsmsadf_tools_sdf3generate_sdf3generate.o: sdf3generate.cc sdf3generate.h ../../fsmsadf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ ../../base/actor.h ../../base/port.h ../../base/type.h \ -+ ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/memorytype.h ../../base/scenario.h ../../base/channel.h \ -+ ../../base/actor.h ../../base/graph.h ../../base/../../sdf/sdf.h \ -+ ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/fsm.h ../../base/port.h \ -+ ../../analysis/analysis.h ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/scenariograph.h \ -+ ../../analysis/throughput/../../base/graph.h \ -+ ../../analysis/throughput/fsm_ref_schedule.h \ -+ ../../analysis/throughput/fsm_scenario_transitions.h \ -+ ../../analysis/throughput/statespace.h \ -+ ../../analysis/throughput/../../base/fsm.h \ -+ ../../analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../analysis/throughput/maxplusautomaton.h \ -+ ../../analysis/maxplus/mpexplore.h \ -+ ../../analysis/maxplus/../base/repetition_vector.h \ -+ ../../analysis/maxplus/../base/../../../base/base.h \ -+ ../../analysis/maxplus/../base/../../base/graph.h \ -+ ../../analysis/maxplus/../../base/graph.h \ -+ ../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ ../../generate/generate.h ../../generate/../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/graph_binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../../resource_allocation/flow/virtual_platform/base/flow.h \ -+ ../../resource_allocation/flow/virtual_platform/base/../../base_platform/base/flow.h \ -+ ../../resource_allocation/flow/compsoc_platform/base/flow.h \ -+ ../../resource_allocation/flow/compsoc_platform/base/../../base_platform/base/flow.h \ -+ ../../resource_allocation/flow/mamps_platform/base/flow.h \ -+ ../../resource_allocation/flow/mamps_platform/base/../../base_platform/base/flow.h \ -+ ../../transform/transform.h ../../transform/worst-case/worst-case.h \ -+ ../../transform/worst-case/../../base/graph.h \ -+ ../../transform/auto-concurrency/auto-concurrency.h \ -+ ../../transform/auto-concurrency/../../base/graph.h \ -+ ../../output/html/html.h \ -+ ../../output/html/../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../base/tools.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3inputconvert_sdf3inputconvert.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3inputconvert_sdf3inputconvert.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3inputconvert_sdf3inputconvert.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3inputconvert_sdf3inputconvert.d 2022-01-07 15:14:58.591798635 +0800 -@@ -0,0 +1,296 @@ -+fsmsadf_tools_sdf3inputconvert_sdf3inputconvert.o: sdf3inputconvert.cc sdf3inputconvert.h \ -+ ../base/tools.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../resource_allocation/flow/mamps_platform/conversion/input_conversion.h \ -+ ../../resource_allocation/flow/mamps_platform/conversion/../../../../../base/exception/exception.h \ -+ ../../resource_allocation/flow/mamps_platform/conversion/../../../../../base/exception/../string/cstring.h \ -+ ../../resource_allocation/flow/mamps_platform/conversion/../../../../../base/exception/../basic_types.h \ -+ ../../resource_allocation/flow/mamps_platform/conversion/../../base_platform/conversion/input_conversion.h \ -+ ../../resource_allocation/flow/mamps_platform/conversion/../../base_platform/conversion/../../../../../base/xml/xml.h \ -+ ../../resource_allocation/flow/mamps_platform/conversion/../../../../../base/xml/xml.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/input_conversion.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../../base/exception/exception.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../base_platform/conversion/input_conversion.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../../base/xml/xml.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/type.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/component.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/base.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/exception/exception.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/fraction/fraction.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/fraction/../basic_types.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/fraction/../math/cmath.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/fraction/../string/cstring.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/xml/xml.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/tempfile/tempfile.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/tempfile/../string/cstring.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/math/cmath.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/random/random.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/sort/sort.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/time/time.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/time/../basic_types.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/time/../string/cstring.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/log/log.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/log/../string/cstring.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/log/../basic_types.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/sequence/sequence.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/sequence/../basic_types.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/matrix/matrix.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/matrix/../basic_types.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/maxplus/maxplus.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/maxplus/mptype.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/maxplus/../basic_types.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/maxplus/../string/cstring.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/maxplus/mpmatrix.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/lookup/clookup.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/memorytype.h \ -+ ../../resource_allocation/flow/virtual_platform/conversion/input_conversion.h \ -+ ../../resource_allocation/flow/virtual_platform/conversion/../../../../../base/exception/exception.h \ -+ ../../resource_allocation/flow/virtual_platform/conversion/../../base_platform/conversion/input_conversion.h \ -+ ../../resource_allocation/flow/virtual_platform/conversion/../../../../../base/xml/xml.h \ -+ ../../resource_allocation/flow/base_platform/conversion/output_conversion.h \ -+ ../../resource_allocation/flow/base_platform/conversion/../../../../../base/exception/exception.h \ -+ ../../resource_allocation/flow/base_platform/conversion/../../../../../base/xml/xml.h \ -+ ../../resource_allocation/flow/virtual_platform/conversion/output_conversion.h \ -+ ../../resource_allocation/flow/virtual_platform/conversion/../../base_platform/conversion/output_conversion.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/output_conversion.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../base_platform/conversion/output_conversion.h \ -+ ../../resource_allocation/flow/mamps_platform/conversion/output_conversion.h \ -+ ../../resource_allocation/flow/mamps_platform/conversion/../../base_platform/conversion/output_conversion.h \ -+ ../../resource_allocation/flow/mamps_platform/conversion/../../compsoc_platform/conversion/helper.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ settings.h ../../fsmsadf.h ../../base/actor.h ../../base/port.h \ -+ ../../base/type.h ../../base/scenario.h ../../base/component.h \ -+ ../../base/channel.h ../../base/actor.h ../../base/graph.h \ -+ ../../base/../../sdf/sdf.h ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/fsm.h ../../base/port.h \ -+ ../../analysis/analysis.h ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/scenariograph.h \ -+ ../../analysis/throughput/../../base/graph.h \ -+ ../../analysis/throughput/fsm_ref_schedule.h \ -+ ../../analysis/throughput/fsm_scenario_transitions.h \ -+ ../../analysis/throughput/statespace.h \ -+ ../../analysis/throughput/../../base/fsm.h \ -+ ../../analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../analysis/throughput/maxplusautomaton.h \ -+ ../../analysis/maxplus/mpexplore.h \ -+ ../../analysis/maxplus/../base/repetition_vector.h \ -+ ../../analysis/maxplus/../base/../../../base/base.h \ -+ ../../analysis/maxplus/../base/../../base/graph.h \ -+ ../../analysis/maxplus/../../base/graph.h \ -+ ../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ ../../generate/generate.h ../../generate/../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/graph_binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../../resource_allocation/flow/virtual_platform/base/flow.h \ -+ ../../resource_allocation/flow/virtual_platform/base/../../base_platform/base/flow.h \ -+ ../../resource_allocation/flow/compsoc_platform/base/flow.h \ -+ ../../resource_allocation/flow/compsoc_platform/base/../../base_platform/base/flow.h \ -+ ../../resource_allocation/flow/mamps_platform/base/flow.h \ -+ ../../resource_allocation/flow/mamps_platform/base/../../base_platform/base/flow.h \ -+ ../../transform/transform.h ../../transform/worst-case/worst-case.h \ -+ ../../transform/worst-case/../../base/graph.h \ -+ ../../transform/auto-concurrency/auto-concurrency.h \ -+ ../../transform/auto-concurrency/../../base/graph.h \ -+ ../../output/html/html.h \ -+ ../../output/html/../../resource_allocation/flow/base_platform/base/flow.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3inputconvert_settings.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3inputconvert_settings.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3inputconvert_settings.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3inputconvert_settings.d 2022-01-07 15:15:00.911810186 +0800 -@@ -0,0 +1,270 @@ -+fsmsadf_tools_sdf3inputconvert_settings.o: settings.cc settings.h ../../fsmsadf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ ../../base/actor.h ../../base/port.h ../../base/type.h \ -+ ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/memorytype.h ../../base/scenario.h ../../base/channel.h \ -+ ../../base/actor.h ../../base/graph.h ../../base/../../sdf/sdf.h \ -+ ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/fsm.h ../../base/port.h \ -+ ../../analysis/analysis.h ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/scenariograph.h \ -+ ../../analysis/throughput/../../base/graph.h \ -+ ../../analysis/throughput/fsm_ref_schedule.h \ -+ ../../analysis/throughput/fsm_scenario_transitions.h \ -+ ../../analysis/throughput/statespace.h \ -+ ../../analysis/throughput/../../base/fsm.h \ -+ ../../analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../analysis/throughput/maxplusautomaton.h \ -+ ../../analysis/maxplus/mpexplore.h \ -+ ../../analysis/maxplus/../base/repetition_vector.h \ -+ ../../analysis/maxplus/../base/../../../base/base.h \ -+ ../../analysis/maxplus/../base/../../base/graph.h \ -+ ../../analysis/maxplus/../../base/graph.h \ -+ ../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ ../../generate/generate.h ../../generate/../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/graph_binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../../resource_allocation/flow/virtual_platform/base/flow.h \ -+ ../../resource_allocation/flow/virtual_platform/base/../../base_platform/base/flow.h \ -+ ../../resource_allocation/flow/compsoc_platform/base/flow.h \ -+ ../../resource_allocation/flow/compsoc_platform/base/../../base_platform/base/flow.h \ -+ ../../resource_allocation/flow/mamps_platform/base/flow.h \ -+ ../../resource_allocation/flow/mamps_platform/base/../../base_platform/base/flow.h \ -+ ../../transform/transform.h ../../transform/worst-case/worst-case.h \ -+ ../../transform/worst-case/../../base/graph.h \ -+ ../../transform/auto-concurrency/auto-concurrency.h \ -+ ../../transform/auto-concurrency/../../base/graph.h \ -+ ../../output/html/html.h \ -+ ../../output/html/../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../base/tools.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3outputconvert_sdf3outputconvert.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3outputconvert_sdf3outputconvert.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3outputconvert_sdf3outputconvert.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3outputconvert_sdf3outputconvert.d 2022-01-07 15:15:03.525156660 +0800 -@@ -0,0 +1,296 @@ -+fsmsadf_tools_sdf3outputconvert_sdf3outputconvert.o: sdf3outputconvert.cc sdf3outputconvert.h \ -+ ../base/tools.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../resource_allocation/flow/mamps_platform/conversion/input_conversion.h \ -+ ../../resource_allocation/flow/mamps_platform/conversion/../../../../../base/exception/exception.h \ -+ ../../resource_allocation/flow/mamps_platform/conversion/../../../../../base/exception/../string/cstring.h \ -+ ../../resource_allocation/flow/mamps_platform/conversion/../../../../../base/exception/../basic_types.h \ -+ ../../resource_allocation/flow/mamps_platform/conversion/../../base_platform/conversion/input_conversion.h \ -+ ../../resource_allocation/flow/mamps_platform/conversion/../../base_platform/conversion/../../../../../base/xml/xml.h \ -+ ../../resource_allocation/flow/mamps_platform/conversion/../../../../../base/xml/xml.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/input_conversion.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../../base/exception/exception.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../base_platform/conversion/input_conversion.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../../base/xml/xml.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/type.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/component.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/base.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/exception/exception.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/fraction/fraction.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/fraction/../basic_types.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/fraction/../math/cmath.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/fraction/../string/cstring.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/xml/xml.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/tempfile/tempfile.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/tempfile/../string/cstring.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/math/cmath.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/random/random.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/sort/sort.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/time/time.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/time/../basic_types.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/time/../string/cstring.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/log/log.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/log/../string/cstring.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/log/../basic_types.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/sequence/sequence.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/sequence/../basic_types.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/matrix/matrix.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/matrix/../basic_types.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/maxplus/maxplus.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/maxplus/mptype.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/maxplus/../basic_types.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/maxplus/../string/cstring.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/maxplus/mpmatrix.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/../../base/lookup/clookup.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../../../base/memorytype.h \ -+ ../../resource_allocation/flow/virtual_platform/conversion/input_conversion.h \ -+ ../../resource_allocation/flow/virtual_platform/conversion/../../../../../base/exception/exception.h \ -+ ../../resource_allocation/flow/virtual_platform/conversion/../../base_platform/conversion/input_conversion.h \ -+ ../../resource_allocation/flow/virtual_platform/conversion/../../../../../base/xml/xml.h \ -+ ../../resource_allocation/flow/base_platform/conversion/output_conversion.h \ -+ ../../resource_allocation/flow/base_platform/conversion/../../../../../base/exception/exception.h \ -+ ../../resource_allocation/flow/base_platform/conversion/../../../../../base/xml/xml.h \ -+ ../../resource_allocation/flow/virtual_platform/conversion/output_conversion.h \ -+ ../../resource_allocation/flow/virtual_platform/conversion/../../base_platform/conversion/output_conversion.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/output_conversion.h \ -+ ../../resource_allocation/flow/compsoc_platform/conversion/../../base_platform/conversion/output_conversion.h \ -+ ../../resource_allocation/flow/mamps_platform/conversion/output_conversion.h \ -+ ../../resource_allocation/flow/mamps_platform/conversion/../../base_platform/conversion/output_conversion.h \ -+ ../../resource_allocation/flow/mamps_platform/conversion/../../compsoc_platform/conversion/helper.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ settings.h ../../fsmsadf.h ../../base/actor.h ../../base/port.h \ -+ ../../base/type.h ../../base/scenario.h ../../base/component.h \ -+ ../../base/channel.h ../../base/actor.h ../../base/graph.h \ -+ ../../base/../../sdf/sdf.h ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/fsm.h ../../base/port.h \ -+ ../../analysis/analysis.h ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/scenariograph.h \ -+ ../../analysis/throughput/../../base/graph.h \ -+ ../../analysis/throughput/fsm_ref_schedule.h \ -+ ../../analysis/throughput/fsm_scenario_transitions.h \ -+ ../../analysis/throughput/statespace.h \ -+ ../../analysis/throughput/../../base/fsm.h \ -+ ../../analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../analysis/throughput/maxplusautomaton.h \ -+ ../../analysis/maxplus/mpexplore.h \ -+ ../../analysis/maxplus/../base/repetition_vector.h \ -+ ../../analysis/maxplus/../base/../../../base/base.h \ -+ ../../analysis/maxplus/../base/../../base/graph.h \ -+ ../../analysis/maxplus/../../base/graph.h \ -+ ../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ ../../generate/generate.h ../../generate/../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/graph_binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../../resource_allocation/flow/virtual_platform/base/flow.h \ -+ ../../resource_allocation/flow/virtual_platform/base/../../base_platform/base/flow.h \ -+ ../../resource_allocation/flow/compsoc_platform/base/flow.h \ -+ ../../resource_allocation/flow/compsoc_platform/base/../../base_platform/base/flow.h \ -+ ../../resource_allocation/flow/mamps_platform/base/flow.h \ -+ ../../resource_allocation/flow/mamps_platform/base/../../base_platform/base/flow.h \ -+ ../../transform/transform.h ../../transform/worst-case/worst-case.h \ -+ ../../transform/worst-case/../../base/graph.h \ -+ ../../transform/auto-concurrency/auto-concurrency.h \ -+ ../../transform/auto-concurrency/../../base/graph.h \ -+ ../../output/html/html.h \ -+ ../../output/html/../../resource_allocation/flow/base_platform/base/flow.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3outputconvert_settings.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3outputconvert_settings.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3outputconvert_settings.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3outputconvert_settings.d 2022-01-07 15:15:05.875168586 +0800 -@@ -0,0 +1,270 @@ -+fsmsadf_tools_sdf3outputconvert_settings.o: settings.cc settings.h ../../fsmsadf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ ../../base/actor.h ../../base/port.h ../../base/type.h \ -+ ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/memorytype.h ../../base/scenario.h ../../base/channel.h \ -+ ../../base/actor.h ../../base/graph.h ../../base/../../sdf/sdf.h \ -+ ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/fsm.h ../../base/port.h \ -+ ../../analysis/analysis.h ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/scenariograph.h \ -+ ../../analysis/throughput/../../base/graph.h \ -+ ../../analysis/throughput/fsm_ref_schedule.h \ -+ ../../analysis/throughput/fsm_scenario_transitions.h \ -+ ../../analysis/throughput/statespace.h \ -+ ../../analysis/throughput/../../base/fsm.h \ -+ ../../analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../analysis/throughput/maxplusautomaton.h \ -+ ../../analysis/maxplus/mpexplore.h \ -+ ../../analysis/maxplus/../base/repetition_vector.h \ -+ ../../analysis/maxplus/../base/../../../base/base.h \ -+ ../../analysis/maxplus/../base/../../base/graph.h \ -+ ../../analysis/maxplus/../../base/graph.h \ -+ ../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ ../../generate/generate.h ../../generate/../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/graph_binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../../resource_allocation/flow/virtual_platform/base/flow.h \ -+ ../../resource_allocation/flow/virtual_platform/base/../../base_platform/base/flow.h \ -+ ../../resource_allocation/flow/compsoc_platform/base/flow.h \ -+ ../../resource_allocation/flow/compsoc_platform/base/../../base_platform/base/flow.h \ -+ ../../resource_allocation/flow/mamps_platform/base/flow.h \ -+ ../../resource_allocation/flow/mamps_platform/base/../../base_platform/base/flow.h \ -+ ../../transform/transform.h ../../transform/worst-case/worst-case.h \ -+ ../../transform/worst-case/../../base/graph.h \ -+ ../../transform/auto-concurrency/auto-concurrency.h \ -+ ../../transform/auto-concurrency/../../base/graph.h \ -+ ../../output/html/html.h \ -+ ../../output/html/../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../base/tools.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3transform_sdf3transform.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3transform_sdf3transform.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3transform_sdf3transform.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_tools_sdf3transform_sdf3transform.d 2022-01-07 15:14:50.461758982 +0800 -@@ -0,0 +1,270 @@ -+fsmsadf_tools_sdf3transform_sdf3transform.o: sdf3transform.cc sdf3transform.h ../../fsmsadf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ ../../base/actor.h ../../base/port.h ../../base/type.h \ -+ ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/memorytype.h ../../base/scenario.h ../../base/channel.h \ -+ ../../base/actor.h ../../base/graph.h ../../base/../../sdf/sdf.h \ -+ ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/fsm.h ../../base/port.h \ -+ ../../analysis/analysis.h ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/scenariograph.h \ -+ ../../analysis/throughput/../../base/graph.h \ -+ ../../analysis/throughput/fsm_ref_schedule.h \ -+ ../../analysis/throughput/fsm_scenario_transitions.h \ -+ ../../analysis/throughput/statespace.h \ -+ ../../analysis/throughput/../../base/fsm.h \ -+ ../../analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../analysis/throughput/maxplusautomaton.h \ -+ ../../analysis/maxplus/mpexplore.h \ -+ ../../analysis/maxplus/../base/repetition_vector.h \ -+ ../../analysis/maxplus/../base/../../../base/base.h \ -+ ../../analysis/maxplus/../base/../../base/graph.h \ -+ ../../analysis/maxplus/../../base/graph.h \ -+ ../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ ../../generate/generate.h ../../generate/../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/graph_binding.h \ -+ ../../resource_allocation/flow/base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../../resource_allocation/flow/virtual_platform/base/flow.h \ -+ ../../resource_allocation/flow/virtual_platform/base/../../base_platform/base/flow.h \ -+ ../../resource_allocation/flow/compsoc_platform/base/flow.h \ -+ ../../resource_allocation/flow/compsoc_platform/base/../../base_platform/base/flow.h \ -+ ../../resource_allocation/flow/mamps_platform/base/flow.h \ -+ ../../resource_allocation/flow/mamps_platform/base/../../base_platform/base/flow.h \ -+ ../../transform/transform.h ../../transform/worst-case/worst-case.h \ -+ ../../transform/worst-case/../../base/graph.h \ -+ ../../transform/auto-concurrency/auto-concurrency.h \ -+ ../../transform/auto-concurrency/../../base/graph.h \ -+ ../../output/html/html.h \ -+ ../../output/html/../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../base/tools.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_transform_auto-concurrency_auto-concurrency.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_transform_auto-concurrency_auto-concurrency.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_transform_auto-concurrency_auto-concurrency.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_transform_auto-concurrency_auto-concurrency.d 2022-01-07 15:14:28.648325796 +0800 -@@ -0,0 +1,211 @@ -+fsmsadf_transform_auto-concurrency_auto-concurrency.o: auto-concurrency.cc auto-concurrency.h \ -+ ../../base/graph.h ../../base/../../sdf/sdf.h \ -+ ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/exception.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/fraction.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/../../sdf/base/untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/../../sdf/base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/math/cmath.h \ -+ ../../base/../../sdf/base/untimed/../../../base/random/random.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sort/sort.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/time.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/log.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sequence/sequence.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/matrix/matrix.h \ -+ ../../base/../../sdf/base/untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/mptype.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/../../sdf/base/untimed/../../../base/lookup/clookup.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/actor.h ../../base/port.h \ -+ ../../base/type.h ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/memorytype.h ../../base/scenario.h ../../base/fsm.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_transform_model-static-order_hsdf-bambha.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_transform_model-static-order_hsdf-bambha.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_transform_model-static-order_hsdf-bambha.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_transform_model-static-order_hsdf-bambha.d 2022-01-07 15:14:30.525000672 +0800 -@@ -0,0 +1,230 @@ -+fsmsadf_transform_model-static-order_hsdf-bambha.o: hsdf-bambha.cc hsdf-bambha.h ../../base/graph.h \ -+ ../../base/../../sdf/sdf.h ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/exception.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/fraction.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/../../sdf/base/untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/../../sdf/base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/math/cmath.h \ -+ ../../base/../../sdf/base/untimed/../../../base/random/random.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sort/sort.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/time.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/log.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sequence/sequence.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/matrix/matrix.h \ -+ ../../base/../../sdf/base/untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/mptype.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/../../sdf/base/untimed/../../../base/lookup/clookup.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/actor.h ../../base/port.h \ -+ ../../base/type.h ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/memorytype.h ../../base/scenario.h ../../base/fsm.h \ -+ ../../resource_allocation/platform_binding/graph.h \ -+ ../../resource_allocation/platform_binding/tile.h \ -+ ../../resource_allocation/platform_binding/processor.h \ -+ ../../resource_allocation/platform_binding/../platform_graph/graph.h \ -+ ../../resource_allocation/platform_binding/../platform_graph/tile.h \ -+ ../../resource_allocation/platform_binding/../platform_graph/processor.h \ -+ ../../resource_allocation/platform_binding/../platform_graph/../../base/type.h \ -+ ../../resource_allocation/platform_binding/../platform_graph/memory.h \ -+ ../../resource_allocation/platform_binding/../platform_graph/networkinterface.h \ -+ ../../resource_allocation/platform_binding/../platform_graph/connection.h \ -+ ../../resource_allocation/platform_binding/../../base/graph.h \ -+ ../../resource_allocation/platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../resource_allocation/platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../resource_allocation/platform_binding/memory.h \ -+ ../../resource_allocation/platform_binding/constraint.h \ -+ ../../resource_allocation/platform_binding/networkinterface.h \ -+ ../../resource_allocation/platform_binding/connection.h \ -+ ../../analysis/base/repetition_vector.h \ -+ ../../analysis/base/../../../base/base.h \ -+ ../../analysis/base/../../base/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_transform_worst-case_worst-case.d sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_transform_worst-case_worst-case.d ---- sdf3-backup/sdf3/build/work/Linux/dep/fsmsadf_transform_worst-case_worst-case.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/fsmsadf_transform_worst-case_worst-case.d 2022-01-07 15:14:33.521680598 +0800 -@@ -0,0 +1,229 @@ -+fsmsadf_transform_worst-case_worst-case.o: worst-case.cc worst-case.h ../../base/graph.h \ -+ ../../base/../../sdf/sdf.h ../../base/../../sdf/base/untimed/graph.h \ -+ ../../base/../../sdf/base/untimed/channel.h \ -+ ../../base/../../sdf/base/untimed/actor.h \ -+ ../../base/../../sdf/base/untimed/port.h \ -+ ../../base/../../sdf/base/untimed/component.h \ -+ ../../base/../../sdf/base/untimed/../../../base/base.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/exception.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/exception/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/fraction.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/../../sdf/base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/../../sdf/base/untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/../../sdf/base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/math/cmath.h \ -+ ../../base/../../sdf/base/untimed/../../../base/random/random.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sort/sort.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/time.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/time/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/log.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/log/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sequence/sequence.h \ -+ ../../base/../../sdf/base/untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/matrix/matrix.h \ -+ ../../base/../../sdf/base/untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/mptype.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/../../sdf/base/untimed/../../../base/lookup/clookup.h \ -+ ../../base/../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../basic_types.h \ -+ ../../base/../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../base/../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../base/../../sdf/base/timed/graph.h \ -+ ../../base/../../sdf/base/timed/channel.h \ -+ ../../base/../../sdf/base/timed/../untimed/graph.h \ -+ ../../base/../../sdf/base/timed/timed_types.h \ -+ ../../base/../../sdf/base/timed/actor.h \ -+ ../../base/../../sdf/base/algo/acyclic.h \ -+ ../../base/../../sdf/base/algo/../untimed/graph.h \ -+ ../../base/../../sdf/base/algo/components.h \ -+ ../../base/../../sdf/base/algo/../../../base/base.h \ -+ ../../base/../../sdf/base/algo/connected.h \ -+ ../../base/../../sdf/base/algo/cycle.h \ -+ ../../base/../../sdf/base/algo/dfs.h \ -+ ../../base/../../sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/base/hsdf/check.h \ -+ ../../base/../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../base/../../sdf/analysis/analysis.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../base/../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../base/../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/latency.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../base/../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../base/../../sdf/analysis/latency/minimal.h \ -+ ../../base/../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/latency/selftimed.h \ -+ ../../base/../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../base/../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../base/../../sdf/analysis/mcm/mcm.h \ -+ ../../base/../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../base/../../sdf/analysis/throughput/throughput.h \ -+ ../../base/../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../base/../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../base/../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/throughput/deadlock.h \ -+ ../../base/../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../base/../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../base/../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../base/../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../base/../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../base/../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../base/../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/../../sdf/generate/generate.h \ -+ ../../base/../../sdf/generate/../base/timed/graph.h \ -+ ../../base/../../sdf/output/buffer_throughput/buffy.h \ -+ ../../base/../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/dot/dot.h \ -+ ../../base/../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../base/../../sdf/output/hapi/hapi.h \ -+ ../../base/../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/html/html.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../base/../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../base/../../sdf/output/schedule/schedule.h \ -+ ../../base/../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../base/../../sdf/output/xml/xml.h \ -+ ../../base/../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../base/../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../base/../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../base/../../sdf/resource_allocation/flow/flow.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../base/../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../base/../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../base/../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../base/../../sdf/transform/model/autoconc.h \ -+ ../../base/../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/model/buffersize.h \ -+ ../../base/../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../base/../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../base/../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../base/../../sdf/transform/to_apg/apg.h \ -+ ../../base/../../sdf/transform/hsdf/hsdf.h \ -+ ../../base/../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../base/../../sdf/transform/hsdf/unfold.h \ -+ ../../base/../../sdf/transform/misc/reverse_channels.h \ -+ ../../base/../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/channel.h ../../base/actor.h ../../base/port.h \ -+ ../../base/type.h ../../base/component.h ../../base/../../base/base.h \ -+ ../../base/memorytype.h ../../base/scenario.h ../../base/fsm.h \ -+ ../../analysis/analysis.h ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/scenariograph.h \ -+ ../../analysis/throughput/../../base/graph.h \ -+ ../../analysis/throughput/fsm_ref_schedule.h \ -+ ../../analysis/throughput/fsm_scenario_transitions.h \ -+ ../../analysis/throughput/statespace.h \ -+ ../../analysis/throughput/../../base/fsm.h \ -+ ../../analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../analysis/throughput/maxplusautomaton.h \ -+ ../../analysis/maxplus/mpexplore.h \ -+ ../../analysis/maxplus/../base/repetition_vector.h \ -+ ../../analysis/maxplus/../base/../../../base/base.h \ -+ ../../analysis/maxplus/../base/../../base/graph.h \ -+ ../../analysis/maxplus/../../base/graph.h \ -+ ../../analysis/maxplus/../../../base/maxplus/maxplus.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_analysis_channel_sadf_buffer_occupancy.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_analysis_channel_sadf_buffer_occupancy.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_analysis_channel_sadf_buffer_occupancy.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_analysis_channel_sadf_buffer_occupancy.d 2022-01-07 15:15:50.372080630 +0800 -@@ -0,0 +1,70 @@ -+sadf_analysis_channel_sadf_buffer_occupancy.o: sadf_buffer_occupancy.cc sadf_buffer_occupancy.h \ -+ ../../verification/simple/sadf_simple.h \ -+ ../../verification/simple/../../base/sadf/sadf_graph.h \ -+ ../../verification/simple/../../base/sadf/sadf_process.h \ -+ ../../verification/simple/../../base/sadf/sadf_channel.h \ -+ ../../verification/simple/../../base/sadf/sadf_component.h \ -+ ../../verification/simple/../../base/sadf/sadf_defines.h \ -+ ../../verification/simple/../../base/sadf/../../../base/base.h \ -+ ../../verification/simple/../../base/sadf/../../../base/exception/exception.h \ -+ ../../verification/simple/../../base/sadf/../../../base/exception/../string/cstring.h \ -+ ../../verification/simple/../../base/sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/exception/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/fraction/fraction.h \ -+ ../../verification/simple/../../base/sadf/../../../base/fraction/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/fraction/../math/cmath.h \ -+ ../../verification/simple/../../base/sadf/../../../base/fraction/../string/cstring.h \ -+ ../../verification/simple/../../base/sadf/../../../base/xml/xml.h \ -+ ../../verification/simple/../../base/sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../verification/simple/../../base/sadf/../../../base/tempfile/tempfile.h \ -+ ../../verification/simple/../../base/sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../verification/simple/../../base/sadf/../../../base/math/cmath.h \ -+ ../../verification/simple/../../base/sadf/../../../base/random/random.h \ -+ ../../verification/simple/../../base/sadf/../../../base/sort/sort.h \ -+ ../../verification/simple/../../base/sadf/../../../base/time/time.h \ -+ ../../verification/simple/../../base/sadf/../../../base/time/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/time/../string/cstring.h \ -+ ../../verification/simple/../../base/sadf/../../../base/log/log.h \ -+ ../../verification/simple/../../base/sadf/../../../base/log/../string/cstring.h \ -+ ../../verification/simple/../../base/sadf/../../../base/log/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/sequence/sequence.h \ -+ ../../verification/simple/../../base/sadf/../../../base/sequence/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/matrix/matrix.h \ -+ ../../verification/simple/../../base/sadf/../../../base/matrix/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/maxplus/maxplus.h \ -+ ../../verification/simple/../../base/sadf/../../../base/maxplus/mptype.h \ -+ ../../verification/simple/../../base/sadf/../../../base/maxplus/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../verification/simple/../../base/sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../verification/simple/../../base/sadf/../../../base/lookup/clookup.h \ -+ ../../verification/simple/../../base/sadf/sadf_profile.h \ -+ ../../verification/simple/../../base/sadf/sadf_markovchain.h \ -+ ../../verification/simple/sadf_ergodic.h \ -+ ../schedulers/sadf_asap_reduced.h \ -+ ../schedulers/../../base/tps/sadf_tps.h \ -+ ../schedulers/../../base/tps/sadf_configuration.h \ -+ ../schedulers/../../base/tps/../sadf/sadf_graph.h \ -+ ../schedulers/../../base/tps/sadf_channel_status.h \ -+ ../schedulers/../../base/tps/sadf_control_status.h \ -+ ../schedulers/../../base/tps/sadf_transition.h \ -+ ../schedulers/../../base/tps/sadf_kernel_status.h \ -+ ../schedulers/../../base/tps/sadf_detector_status.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_analysis_graph_sadf_state_space.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_analysis_graph_sadf_state_space.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_analysis_graph_sadf_state_space.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_analysis_graph_sadf_state_space.d 2022-01-07 15:15:51.748755462 +0800 -@@ -0,0 +1,66 @@ -+sadf_analysis_graph_sadf_state_space.o: sadf_state_space.cc sadf_state_space.h \ -+ ../schedulers/sadf_asap.h ../schedulers/../../base/tps/sadf_tps.h \ -+ ../schedulers/../../base/tps/sadf_configuration.h \ -+ ../schedulers/../../base/tps/../sadf/sadf_graph.h \ -+ ../schedulers/../../base/tps/../sadf/sadf_process.h \ -+ ../schedulers/../../base/tps/../sadf/sadf_channel.h \ -+ ../schedulers/../../base/tps/../sadf/sadf_component.h \ -+ ../schedulers/../../base/tps/../sadf/sadf_defines.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/base.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/exception/exception.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/exception/../string/cstring.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/exception/../string/../basic_types.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/exception/../basic_types.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/fraction/fraction.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/fraction/../basic_types.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/fraction/../math/cmath.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/fraction/../string/cstring.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/xml/xml.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/tempfile/tempfile.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/tempfile/../string/cstring.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/math/cmath.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/random/random.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/sort/sort.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/time/time.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/time/../basic_types.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/time/../string/cstring.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/log/log.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/log/../string/cstring.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/log/../basic_types.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/sequence/sequence.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/sequence/../basic_types.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/matrix/matrix.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/matrix/../basic_types.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/maxplus/maxplus.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/maxplus/mptype.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/maxplus/../basic_types.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/maxplus/../string/cstring.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/maxplus/mpmatrix.h \ -+ ../schedulers/../../base/tps/../sadf/../../../base/lookup/clookup.h \ -+ ../schedulers/../../base/tps/../sadf/sadf_profile.h \ -+ ../schedulers/../../base/tps/../sadf/sadf_markovchain.h \ -+ ../schedulers/../../base/tps/sadf_channel_status.h \ -+ ../schedulers/../../base/tps/sadf_control_status.h \ -+ ../schedulers/../../base/tps/sadf_transition.h \ -+ ../schedulers/../../base/tps/sadf_kernel_status.h \ -+ ../schedulers/../../base/tps/sadf_detector_status.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_analysis_process_sadf_deadline_miss.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_analysis_process_sadf_deadline_miss.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_analysis_process_sadf_deadline_miss.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_analysis_process_sadf_deadline_miss.d 2022-01-07 15:15:52.902095660 +0800 -@@ -0,0 +1,70 @@ -+sadf_analysis_process_sadf_deadline_miss.o: sadf_deadline_miss.cc sadf_deadline_miss.h \ -+ ../../verification/simple/sadf_simple.h \ -+ ../../verification/simple/../../base/sadf/sadf_graph.h \ -+ ../../verification/simple/../../base/sadf/sadf_process.h \ -+ ../../verification/simple/../../base/sadf/sadf_channel.h \ -+ ../../verification/simple/../../base/sadf/sadf_component.h \ -+ ../../verification/simple/../../base/sadf/sadf_defines.h \ -+ ../../verification/simple/../../base/sadf/../../../base/base.h \ -+ ../../verification/simple/../../base/sadf/../../../base/exception/exception.h \ -+ ../../verification/simple/../../base/sadf/../../../base/exception/../string/cstring.h \ -+ ../../verification/simple/../../base/sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/exception/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/fraction/fraction.h \ -+ ../../verification/simple/../../base/sadf/../../../base/fraction/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/fraction/../math/cmath.h \ -+ ../../verification/simple/../../base/sadf/../../../base/fraction/../string/cstring.h \ -+ ../../verification/simple/../../base/sadf/../../../base/xml/xml.h \ -+ ../../verification/simple/../../base/sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../verification/simple/../../base/sadf/../../../base/tempfile/tempfile.h \ -+ ../../verification/simple/../../base/sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../verification/simple/../../base/sadf/../../../base/math/cmath.h \ -+ ../../verification/simple/../../base/sadf/../../../base/random/random.h \ -+ ../../verification/simple/../../base/sadf/../../../base/sort/sort.h \ -+ ../../verification/simple/../../base/sadf/../../../base/time/time.h \ -+ ../../verification/simple/../../base/sadf/../../../base/time/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/time/../string/cstring.h \ -+ ../../verification/simple/../../base/sadf/../../../base/log/log.h \ -+ ../../verification/simple/../../base/sadf/../../../base/log/../string/cstring.h \ -+ ../../verification/simple/../../base/sadf/../../../base/log/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/sequence/sequence.h \ -+ ../../verification/simple/../../base/sadf/../../../base/sequence/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/matrix/matrix.h \ -+ ../../verification/simple/../../base/sadf/../../../base/matrix/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/maxplus/maxplus.h \ -+ ../../verification/simple/../../base/sadf/../../../base/maxplus/mptype.h \ -+ ../../verification/simple/../../base/sadf/../../../base/maxplus/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../verification/simple/../../base/sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../verification/simple/../../base/sadf/../../../base/lookup/clookup.h \ -+ ../../verification/simple/../../base/sadf/sadf_profile.h \ -+ ../../verification/simple/../../base/sadf/sadf_markovchain.h \ -+ ../../verification/simple/sadf_ergodic.h \ -+ ../schedulers/sadf_asap_reduced.h \ -+ ../schedulers/../../base/tps/sadf_tps.h \ -+ ../schedulers/../../base/tps/sadf_configuration.h \ -+ ../schedulers/../../base/tps/../sadf/sadf_graph.h \ -+ ../schedulers/../../base/tps/sadf_channel_status.h \ -+ ../schedulers/../../base/tps/sadf_control_status.h \ -+ ../schedulers/../../base/tps/sadf_transition.h \ -+ ../schedulers/../../base/tps/sadf_kernel_status.h \ -+ ../schedulers/../../base/tps/sadf_detector_status.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_analysis_process_sadf_inter_firing_latency.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_analysis_process_sadf_inter_firing_latency.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_analysis_process_sadf_inter_firing_latency.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_analysis_process_sadf_inter_firing_latency.d 2022-01-07 15:15:54.072102649 +0800 -@@ -0,0 +1,70 @@ -+sadf_analysis_process_sadf_inter_firing_latency.o: sadf_inter_firing_latency.cc \ -+ sadf_inter_firing_latency.h ../../verification/simple/sadf_simple.h \ -+ ../../verification/simple/../../base/sadf/sadf_graph.h \ -+ ../../verification/simple/../../base/sadf/sadf_process.h \ -+ ../../verification/simple/../../base/sadf/sadf_channel.h \ -+ ../../verification/simple/../../base/sadf/sadf_component.h \ -+ ../../verification/simple/../../base/sadf/sadf_defines.h \ -+ ../../verification/simple/../../base/sadf/../../../base/base.h \ -+ ../../verification/simple/../../base/sadf/../../../base/exception/exception.h \ -+ ../../verification/simple/../../base/sadf/../../../base/exception/../string/cstring.h \ -+ ../../verification/simple/../../base/sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/exception/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/fraction/fraction.h \ -+ ../../verification/simple/../../base/sadf/../../../base/fraction/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/fraction/../math/cmath.h \ -+ ../../verification/simple/../../base/sadf/../../../base/fraction/../string/cstring.h \ -+ ../../verification/simple/../../base/sadf/../../../base/xml/xml.h \ -+ ../../verification/simple/../../base/sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../verification/simple/../../base/sadf/../../../base/tempfile/tempfile.h \ -+ ../../verification/simple/../../base/sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../verification/simple/../../base/sadf/../../../base/math/cmath.h \ -+ ../../verification/simple/../../base/sadf/../../../base/random/random.h \ -+ ../../verification/simple/../../base/sadf/../../../base/sort/sort.h \ -+ ../../verification/simple/../../base/sadf/../../../base/time/time.h \ -+ ../../verification/simple/../../base/sadf/../../../base/time/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/time/../string/cstring.h \ -+ ../../verification/simple/../../base/sadf/../../../base/log/log.h \ -+ ../../verification/simple/../../base/sadf/../../../base/log/../string/cstring.h \ -+ ../../verification/simple/../../base/sadf/../../../base/log/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/sequence/sequence.h \ -+ ../../verification/simple/../../base/sadf/../../../base/sequence/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/matrix/matrix.h \ -+ ../../verification/simple/../../base/sadf/../../../base/matrix/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/maxplus/maxplus.h \ -+ ../../verification/simple/../../base/sadf/../../../base/maxplus/mptype.h \ -+ ../../verification/simple/../../base/sadf/../../../base/maxplus/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../verification/simple/../../base/sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../verification/simple/../../base/sadf/../../../base/lookup/clookup.h \ -+ ../../verification/simple/../../base/sadf/sadf_profile.h \ -+ ../../verification/simple/../../base/sadf/sadf_markovchain.h \ -+ ../../verification/simple/sadf_ergodic.h \ -+ ../schedulers/sadf_asap_reduced.h \ -+ ../schedulers/../../base/tps/sadf_tps.h \ -+ ../schedulers/../../base/tps/sadf_configuration.h \ -+ ../schedulers/../../base/tps/../sadf/sadf_graph.h \ -+ ../schedulers/../../base/tps/sadf_channel_status.h \ -+ ../schedulers/../../base/tps/sadf_control_status.h \ -+ ../schedulers/../../base/tps/sadf_transition.h \ -+ ../schedulers/../../base/tps/sadf_kernel_status.h \ -+ ../schedulers/../../base/tps/sadf_detector_status.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_analysis_process_sadf_response_delay.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_analysis_process_sadf_response_delay.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_analysis_process_sadf_response_delay.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_analysis_process_sadf_response_delay.d 2022-01-07 15:15:55.225442895 +0800 -@@ -0,0 +1,70 @@ -+sadf_analysis_process_sadf_response_delay.o: sadf_response_delay.cc sadf_response_delay.h \ -+ ../../verification/simple/sadf_simple.h \ -+ ../../verification/simple/../../base/sadf/sadf_graph.h \ -+ ../../verification/simple/../../base/sadf/sadf_process.h \ -+ ../../verification/simple/../../base/sadf/sadf_channel.h \ -+ ../../verification/simple/../../base/sadf/sadf_component.h \ -+ ../../verification/simple/../../base/sadf/sadf_defines.h \ -+ ../../verification/simple/../../base/sadf/../../../base/base.h \ -+ ../../verification/simple/../../base/sadf/../../../base/exception/exception.h \ -+ ../../verification/simple/../../base/sadf/../../../base/exception/../string/cstring.h \ -+ ../../verification/simple/../../base/sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/exception/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/fraction/fraction.h \ -+ ../../verification/simple/../../base/sadf/../../../base/fraction/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/fraction/../math/cmath.h \ -+ ../../verification/simple/../../base/sadf/../../../base/fraction/../string/cstring.h \ -+ ../../verification/simple/../../base/sadf/../../../base/xml/xml.h \ -+ ../../verification/simple/../../base/sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../verification/simple/../../base/sadf/../../../base/tempfile/tempfile.h \ -+ ../../verification/simple/../../base/sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../verification/simple/../../base/sadf/../../../base/math/cmath.h \ -+ ../../verification/simple/../../base/sadf/../../../base/random/random.h \ -+ ../../verification/simple/../../base/sadf/../../../base/sort/sort.h \ -+ ../../verification/simple/../../base/sadf/../../../base/time/time.h \ -+ ../../verification/simple/../../base/sadf/../../../base/time/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/time/../string/cstring.h \ -+ ../../verification/simple/../../base/sadf/../../../base/log/log.h \ -+ ../../verification/simple/../../base/sadf/../../../base/log/../string/cstring.h \ -+ ../../verification/simple/../../base/sadf/../../../base/log/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/sequence/sequence.h \ -+ ../../verification/simple/../../base/sadf/../../../base/sequence/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/matrix/matrix.h \ -+ ../../verification/simple/../../base/sadf/../../../base/matrix/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/maxplus/maxplus.h \ -+ ../../verification/simple/../../base/sadf/../../../base/maxplus/mptype.h \ -+ ../../verification/simple/../../base/sadf/../../../base/maxplus/../basic_types.h \ -+ ../../verification/simple/../../base/sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../verification/simple/../../base/sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../verification/simple/../../base/sadf/../../../base/lookup/clookup.h \ -+ ../../verification/simple/../../base/sadf/sadf_profile.h \ -+ ../../verification/simple/../../base/sadf/sadf_markovchain.h \ -+ ../../verification/simple/sadf_ergodic.h \ -+ ../schedulers/sadf_asap_reduced.h \ -+ ../schedulers/../../base/tps/sadf_tps.h \ -+ ../schedulers/../../base/tps/sadf_configuration.h \ -+ ../schedulers/../../base/tps/../sadf/sadf_graph.h \ -+ ../schedulers/../../base/tps/sadf_channel_status.h \ -+ ../schedulers/../../base/tps/sadf_control_status.h \ -+ ../schedulers/../../base/tps/sadf_transition.h \ -+ ../schedulers/../../base/tps/sadf_kernel_status.h \ -+ ../schedulers/../../base/tps/sadf_detector_status.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_analysis_schedulers_sadf_asap.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_analysis_schedulers_sadf_asap.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_analysis_schedulers_sadf_asap.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_analysis_schedulers_sadf_asap.d 2022-01-07 15:15:56.398783287 +0800 -@@ -0,0 +1,63 @@ -+sadf_analysis_schedulers_sadf_asap.o: sadf_asap.cc sadf_asap.h ../../base/tps/sadf_tps.h \ -+ ../../base/tps/sadf_configuration.h ../../base/tps/../sadf/sadf_graph.h \ -+ ../../base/tps/../sadf/sadf_process.h \ -+ ../../base/tps/../sadf/sadf_channel.h \ -+ ../../base/tps/../sadf/sadf_component.h \ -+ ../../base/tps/../sadf/sadf_defines.h \ -+ ../../base/tps/../sadf/../../../base/base.h \ -+ ../../base/tps/../sadf/../../../base/exception/exception.h \ -+ ../../base/tps/../sadf/../../../base/exception/../string/cstring.h \ -+ ../../base/tps/../sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../base/tps/../sadf/../../../base/exception/../basic_types.h \ -+ ../../base/tps/../sadf/../../../base/fraction/fraction.h \ -+ ../../base/tps/../sadf/../../../base/fraction/../basic_types.h \ -+ ../../base/tps/../sadf/../../../base/fraction/../math/cmath.h \ -+ ../../base/tps/../sadf/../../../base/fraction/../string/cstring.h \ -+ ../../base/tps/../sadf/../../../base/xml/xml.h \ -+ ../../base/tps/../sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/tps/../sadf/../../../base/tempfile/tempfile.h \ -+ ../../base/tps/../sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../base/tps/../sadf/../../../base/math/cmath.h \ -+ ../../base/tps/../sadf/../../../base/random/random.h \ -+ ../../base/tps/../sadf/../../../base/sort/sort.h \ -+ ../../base/tps/../sadf/../../../base/time/time.h \ -+ ../../base/tps/../sadf/../../../base/time/../basic_types.h \ -+ ../../base/tps/../sadf/../../../base/time/../string/cstring.h \ -+ ../../base/tps/../sadf/../../../base/log/log.h \ -+ ../../base/tps/../sadf/../../../base/log/../string/cstring.h \ -+ ../../base/tps/../sadf/../../../base/log/../basic_types.h \ -+ ../../base/tps/../sadf/../../../base/sequence/sequence.h \ -+ ../../base/tps/../sadf/../../../base/sequence/../basic_types.h \ -+ ../../base/tps/../sadf/../../../base/matrix/matrix.h \ -+ ../../base/tps/../sadf/../../../base/matrix/../basic_types.h \ -+ ../../base/tps/../sadf/../../../base/maxplus/maxplus.h \ -+ ../../base/tps/../sadf/../../../base/maxplus/mptype.h \ -+ ../../base/tps/../sadf/../../../base/maxplus/../basic_types.h \ -+ ../../base/tps/../sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../base/tps/../sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../base/tps/../sadf/../../../base/lookup/clookup.h \ -+ ../../base/tps/../sadf/sadf_profile.h \ -+ ../../base/tps/../sadf/sadf_markovchain.h \ -+ ../../base/tps/sadf_channel_status.h \ -+ ../../base/tps/sadf_control_status.h ../../base/tps/sadf_transition.h \ -+ ../../base/tps/sadf_kernel_status.h \ -+ ../../base/tps/sadf_detector_status.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_analysis_schedulers_sadf_asap_reduced.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_analysis_schedulers_sadf_asap_reduced.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_analysis_schedulers_sadf_asap_reduced.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_analysis_schedulers_sadf_asap_reduced.d 2022-01-07 15:15:57.598790529 +0800 -@@ -0,0 +1,64 @@ -+sadf_analysis_schedulers_sadf_asap_reduced.o: sadf_asap_reduced.cc sadf_asap_reduced.h \ -+ ../../base/tps/sadf_tps.h ../../base/tps/sadf_configuration.h \ -+ ../../base/tps/../sadf/sadf_graph.h \ -+ ../../base/tps/../sadf/sadf_process.h \ -+ ../../base/tps/../sadf/sadf_channel.h \ -+ ../../base/tps/../sadf/sadf_component.h \ -+ ../../base/tps/../sadf/sadf_defines.h \ -+ ../../base/tps/../sadf/../../../base/base.h \ -+ ../../base/tps/../sadf/../../../base/exception/exception.h \ -+ ../../base/tps/../sadf/../../../base/exception/../string/cstring.h \ -+ ../../base/tps/../sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../base/tps/../sadf/../../../base/exception/../basic_types.h \ -+ ../../base/tps/../sadf/../../../base/fraction/fraction.h \ -+ ../../base/tps/../sadf/../../../base/fraction/../basic_types.h \ -+ ../../base/tps/../sadf/../../../base/fraction/../math/cmath.h \ -+ ../../base/tps/../sadf/../../../base/fraction/../string/cstring.h \ -+ ../../base/tps/../sadf/../../../base/xml/xml.h \ -+ ../../base/tps/../sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/tps/../sadf/../../../base/tempfile/tempfile.h \ -+ ../../base/tps/../sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../base/tps/../sadf/../../../base/math/cmath.h \ -+ ../../base/tps/../sadf/../../../base/random/random.h \ -+ ../../base/tps/../sadf/../../../base/sort/sort.h \ -+ ../../base/tps/../sadf/../../../base/time/time.h \ -+ ../../base/tps/../sadf/../../../base/time/../basic_types.h \ -+ ../../base/tps/../sadf/../../../base/time/../string/cstring.h \ -+ ../../base/tps/../sadf/../../../base/log/log.h \ -+ ../../base/tps/../sadf/../../../base/log/../string/cstring.h \ -+ ../../base/tps/../sadf/../../../base/log/../basic_types.h \ -+ ../../base/tps/../sadf/../../../base/sequence/sequence.h \ -+ ../../base/tps/../sadf/../../../base/sequence/../basic_types.h \ -+ ../../base/tps/../sadf/../../../base/matrix/matrix.h \ -+ ../../base/tps/../sadf/../../../base/matrix/../basic_types.h \ -+ ../../base/tps/../sadf/../../../base/maxplus/maxplus.h \ -+ ../../base/tps/../sadf/../../../base/maxplus/mptype.h \ -+ ../../base/tps/../sadf/../../../base/maxplus/../basic_types.h \ -+ ../../base/tps/../sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../base/tps/../sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../base/tps/../sadf/../../../base/lookup/clookup.h \ -+ ../../base/tps/../sadf/sadf_profile.h \ -+ ../../base/tps/../sadf/sadf_markovchain.h \ -+ ../../base/tps/sadf_channel_status.h \ -+ ../../base/tps/sadf_control_status.h ../../base/tps/sadf_transition.h \ -+ ../../base/tps/sadf_kernel_status.h \ -+ ../../base/tps/sadf_detector_status.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_parser_sadf_parser.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_parser_sadf_parser.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_parser_sadf_parser.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_parser_sadf_parser.d 2022-01-07 15:15:59.138799858 +0800 -@@ -0,0 +1,52 @@ -+sadf_base_parser_sadf_parser.o: sadf_parser.cc sadf_parser.h ../sadf/sadf_graph.h \ -+ ../sadf/sadf_process.h ../sadf/sadf_channel.h ../sadf/sadf_component.h \ -+ ../sadf/sadf_defines.h ../sadf/../../../base/base.h \ -+ ../sadf/../../../base/exception/exception.h \ -+ ../sadf/../../../base/exception/../string/cstring.h \ -+ ../sadf/../../../base/exception/../string/../basic_types.h \ -+ ../sadf/../../../base/exception/../basic_types.h \ -+ ../sadf/../../../base/fraction/fraction.h \ -+ ../sadf/../../../base/fraction/../basic_types.h \ -+ ../sadf/../../../base/fraction/../math/cmath.h \ -+ ../sadf/../../../base/fraction/../string/cstring.h \ -+ ../sadf/../../../base/xml/xml.h \ -+ ../sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../sadf/../../../base/tempfile/tempfile.h \ -+ ../sadf/../../../base/tempfile/../string/cstring.h \ -+ ../sadf/../../../base/math/cmath.h ../sadf/../../../base/random/random.h \ -+ ../sadf/../../../base/sort/sort.h ../sadf/../../../base/time/time.h \ -+ ../sadf/../../../base/time/../basic_types.h \ -+ ../sadf/../../../base/time/../string/cstring.h \ -+ ../sadf/../../../base/log/log.h \ -+ ../sadf/../../../base/log/../string/cstring.h \ -+ ../sadf/../../../base/log/../basic_types.h \ -+ ../sadf/../../../base/sequence/sequence.h \ -+ ../sadf/../../../base/sequence/../basic_types.h \ -+ ../sadf/../../../base/matrix/matrix.h \ -+ ../sadf/../../../base/matrix/../basic_types.h \ -+ ../sadf/../../../base/maxplus/maxplus.h \ -+ ../sadf/../../../base/maxplus/mptype.h \ -+ ../sadf/../../../base/maxplus/../basic_types.h \ -+ ../sadf/../../../base/maxplus/../string/cstring.h \ -+ ../sadf/../../../base/maxplus/mpmatrix.h \ -+ ../sadf/../../../base/lookup/clookup.h ../sadf/sadf_profile.h \ -+ ../sadf/sadf_markovchain.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_sadf_sadf_channel.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_sadf_sadf_channel.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_sadf_sadf_channel.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_sadf_sadf_channel.d 2022-01-07 15:16:02.275485658 +0800 -@@ -0,0 +1,41 @@ -+sadf_base_sadf_sadf_channel.o: sadf_channel.cc sadf_channel.h sadf_component.h \ -+ sadf_defines.h ../../../base/base.h ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_sadf_sadf_component.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_sadf_sadf_component.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_sadf_sadf_component.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_sadf_sadf_component.d 2022-01-07 15:16:03.338825515 +0800 -@@ -0,0 +1,41 @@ -+sadf_base_sadf_sadf_component.o: sadf_component.cc sadf_component.h sadf_defines.h \ -+ ../../../base/base.h ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_sadf_sadf_graph.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_sadf_sadf_graph.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_sadf_sadf_graph.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_sadf_sadf_graph.d 2022-01-07 15:16:04.178830682 +0800 -@@ -0,0 +1,43 @@ -+sadf_base_sadf_sadf_graph.o: sadf_graph.cc sadf_graph.h sadf_process.h sadf_channel.h \ -+ sadf_component.h sadf_defines.h ../../../base/base.h \ -+ ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h \ -+ sadf_profile.h sadf_markovchain.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_sadf_sadf_markovchain.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_sadf_sadf_markovchain.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_sadf_sadf_markovchain.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_sadf_sadf_markovchain.d 2022-01-07 15:16:05.218837096 +0800 -@@ -0,0 +1,42 @@ -+sadf_base_sadf_sadf_markovchain.o: sadf_markovchain.cc sadf_markovchain.h \ -+ sadf_component.h sadf_defines.h ../../../base/base.h \ -+ ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_sadf_sadf_process.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_sadf_sadf_process.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_sadf_sadf_process.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_sadf_sadf_process.d 2022-01-07 15:16:06.438844647 +0800 -@@ -0,0 +1,43 @@ -+sadf_base_sadf_sadf_process.o: sadf_process.cc sadf_process.h sadf_channel.h \ -+ sadf_component.h sadf_defines.h ../../../base/base.h \ -+ ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h \ -+ sadf_profile.h sadf_markovchain.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_sadf_sadf_profile.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_sadf_sadf_profile.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_sadf_sadf_profile.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_sadf_sadf_profile.d 2022-01-07 15:16:07.865520172 +0800 -@@ -0,0 +1,41 @@ -+sadf_base_sadf_sadf_profile.o: sadf_profile.cc sadf_profile.h sadf_component.h \ -+ sadf_defines.h ../../../base/base.h ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_channel_status.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_channel_status.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_channel_status.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_channel_status.d 2022-01-07 15:16:08.845526278 +0800 -@@ -0,0 +1,52 @@ -+sadf_base_tps_sadf_channel_status.o: sadf_channel_status.cc sadf_channel_status.h \ -+ ../sadf/sadf_graph.h ../sadf/sadf_process.h ../sadf/sadf_channel.h \ -+ ../sadf/sadf_component.h ../sadf/sadf_defines.h \ -+ ../sadf/../../../base/base.h ../sadf/../../../base/exception/exception.h \ -+ ../sadf/../../../base/exception/../string/cstring.h \ -+ ../sadf/../../../base/exception/../string/../basic_types.h \ -+ ../sadf/../../../base/exception/../basic_types.h \ -+ ../sadf/../../../base/fraction/fraction.h \ -+ ../sadf/../../../base/fraction/../basic_types.h \ -+ ../sadf/../../../base/fraction/../math/cmath.h \ -+ ../sadf/../../../base/fraction/../string/cstring.h \ -+ ../sadf/../../../base/xml/xml.h \ -+ ../sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../sadf/../../../base/tempfile/tempfile.h \ -+ ../sadf/../../../base/tempfile/../string/cstring.h \ -+ ../sadf/../../../base/math/cmath.h ../sadf/../../../base/random/random.h \ -+ ../sadf/../../../base/sort/sort.h ../sadf/../../../base/time/time.h \ -+ ../sadf/../../../base/time/../basic_types.h \ -+ ../sadf/../../../base/time/../string/cstring.h \ -+ ../sadf/../../../base/log/log.h \ -+ ../sadf/../../../base/log/../string/cstring.h \ -+ ../sadf/../../../base/log/../basic_types.h \ -+ ../sadf/../../../base/sequence/sequence.h \ -+ ../sadf/../../../base/sequence/../basic_types.h \ -+ ../sadf/../../../base/matrix/matrix.h \ -+ ../sadf/../../../base/matrix/../basic_types.h \ -+ ../sadf/../../../base/maxplus/maxplus.h \ -+ ../sadf/../../../base/maxplus/mptype.h \ -+ ../sadf/../../../base/maxplus/../basic_types.h \ -+ ../sadf/../../../base/maxplus/../string/cstring.h \ -+ ../sadf/../../../base/maxplus/mpmatrix.h \ -+ ../sadf/../../../base/lookup/clookup.h ../sadf/sadf_profile.h \ -+ ../sadf/sadf_markovchain.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_configuration.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_configuration.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_configuration.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_configuration.d 2022-01-07 15:16:09.798865568 +0800 -@@ -0,0 +1,53 @@ -+sadf_base_tps_sadf_configuration.o: sadf_configuration.cc sadf_configuration.h \ -+ ../sadf/sadf_graph.h ../sadf/sadf_process.h ../sadf/sadf_channel.h \ -+ ../sadf/sadf_component.h ../sadf/sadf_defines.h \ -+ ../sadf/../../../base/base.h ../sadf/../../../base/exception/exception.h \ -+ ../sadf/../../../base/exception/../string/cstring.h \ -+ ../sadf/../../../base/exception/../string/../basic_types.h \ -+ ../sadf/../../../base/exception/../basic_types.h \ -+ ../sadf/../../../base/fraction/fraction.h \ -+ ../sadf/../../../base/fraction/../basic_types.h \ -+ ../sadf/../../../base/fraction/../math/cmath.h \ -+ ../sadf/../../../base/fraction/../string/cstring.h \ -+ ../sadf/../../../base/xml/xml.h \ -+ ../sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../sadf/../../../base/tempfile/tempfile.h \ -+ ../sadf/../../../base/tempfile/../string/cstring.h \ -+ ../sadf/../../../base/math/cmath.h ../sadf/../../../base/random/random.h \ -+ ../sadf/../../../base/sort/sort.h ../sadf/../../../base/time/time.h \ -+ ../sadf/../../../base/time/../basic_types.h \ -+ ../sadf/../../../base/time/../string/cstring.h \ -+ ../sadf/../../../base/log/log.h \ -+ ../sadf/../../../base/log/../string/cstring.h \ -+ ../sadf/../../../base/log/../basic_types.h \ -+ ../sadf/../../../base/sequence/sequence.h \ -+ ../sadf/../../../base/sequence/../basic_types.h \ -+ ../sadf/../../../base/matrix/matrix.h \ -+ ../sadf/../../../base/matrix/../basic_types.h \ -+ ../sadf/../../../base/maxplus/maxplus.h \ -+ ../sadf/../../../base/maxplus/mptype.h \ -+ ../sadf/../../../base/maxplus/../basic_types.h \ -+ ../sadf/../../../base/maxplus/../string/cstring.h \ -+ ../sadf/../../../base/maxplus/mpmatrix.h \ -+ ../sadf/../../../base/lookup/clookup.h ../sadf/sadf_profile.h \ -+ ../sadf/sadf_markovchain.h sadf_channel_status.h sadf_control_status.h \ -+ sadf_transition.h sadf_tps.h sadf_kernel_status.h sadf_detector_status.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_control_status.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_control_status.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_control_status.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_control_status.d 2022-01-07 15:16:11.198874341 +0800 -@@ -0,0 +1,52 @@ -+sadf_base_tps_sadf_control_status.o: sadf_control_status.cc sadf_control_status.h \ -+ ../sadf/sadf_graph.h ../sadf/sadf_process.h ../sadf/sadf_channel.h \ -+ ../sadf/sadf_component.h ../sadf/sadf_defines.h \ -+ ../sadf/../../../base/base.h ../sadf/../../../base/exception/exception.h \ -+ ../sadf/../../../base/exception/../string/cstring.h \ -+ ../sadf/../../../base/exception/../string/../basic_types.h \ -+ ../sadf/../../../base/exception/../basic_types.h \ -+ ../sadf/../../../base/fraction/fraction.h \ -+ ../sadf/../../../base/fraction/../basic_types.h \ -+ ../sadf/../../../base/fraction/../math/cmath.h \ -+ ../sadf/../../../base/fraction/../string/cstring.h \ -+ ../sadf/../../../base/xml/xml.h \ -+ ../sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../sadf/../../../base/tempfile/tempfile.h \ -+ ../sadf/../../../base/tempfile/../string/cstring.h \ -+ ../sadf/../../../base/math/cmath.h ../sadf/../../../base/random/random.h \ -+ ../sadf/../../../base/sort/sort.h ../sadf/../../../base/time/time.h \ -+ ../sadf/../../../base/time/../basic_types.h \ -+ ../sadf/../../../base/time/../string/cstring.h \ -+ ../sadf/../../../base/log/log.h \ -+ ../sadf/../../../base/log/../string/cstring.h \ -+ ../sadf/../../../base/log/../basic_types.h \ -+ ../sadf/../../../base/sequence/sequence.h \ -+ ../sadf/../../../base/sequence/../basic_types.h \ -+ ../sadf/../../../base/matrix/matrix.h \ -+ ../sadf/../../../base/matrix/../basic_types.h \ -+ ../sadf/../../../base/maxplus/maxplus.h \ -+ ../sadf/../../../base/maxplus/mptype.h \ -+ ../sadf/../../../base/maxplus/../basic_types.h \ -+ ../sadf/../../../base/maxplus/../string/cstring.h \ -+ ../sadf/../../../base/maxplus/mpmatrix.h \ -+ ../sadf/../../../base/lookup/clookup.h ../sadf/sadf_profile.h \ -+ ../sadf/sadf_markovchain.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_detector_status.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_detector_status.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_detector_status.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_detector_status.d 2022-01-07 15:16:12.595549795 +0800 -@@ -0,0 +1,53 @@ -+sadf_base_tps_sadf_detector_status.o: sadf_detector_status.cc sadf_detector_status.h \ -+ ../sadf/sadf_graph.h ../sadf/sadf_process.h ../sadf/sadf_channel.h \ -+ ../sadf/sadf_component.h ../sadf/sadf_defines.h \ -+ ../sadf/../../../base/base.h ../sadf/../../../base/exception/exception.h \ -+ ../sadf/../../../base/exception/../string/cstring.h \ -+ ../sadf/../../../base/exception/../string/../basic_types.h \ -+ ../sadf/../../../base/exception/../basic_types.h \ -+ ../sadf/../../../base/fraction/fraction.h \ -+ ../sadf/../../../base/fraction/../basic_types.h \ -+ ../sadf/../../../base/fraction/../math/cmath.h \ -+ ../sadf/../../../base/fraction/../string/cstring.h \ -+ ../sadf/../../../base/xml/xml.h \ -+ ../sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../sadf/../../../base/tempfile/tempfile.h \ -+ ../sadf/../../../base/tempfile/../string/cstring.h \ -+ ../sadf/../../../base/math/cmath.h ../sadf/../../../base/random/random.h \ -+ ../sadf/../../../base/sort/sort.h ../sadf/../../../base/time/time.h \ -+ ../sadf/../../../base/time/../basic_types.h \ -+ ../sadf/../../../base/time/../string/cstring.h \ -+ ../sadf/../../../base/log/log.h \ -+ ../sadf/../../../base/log/../string/cstring.h \ -+ ../sadf/../../../base/log/../basic_types.h \ -+ ../sadf/../../../base/sequence/sequence.h \ -+ ../sadf/../../../base/sequence/../basic_types.h \ -+ ../sadf/../../../base/matrix/matrix.h \ -+ ../sadf/../../../base/matrix/../basic_types.h \ -+ ../sadf/../../../base/maxplus/maxplus.h \ -+ ../sadf/../../../base/maxplus/mptype.h \ -+ ../sadf/../../../base/maxplus/../basic_types.h \ -+ ../sadf/../../../base/maxplus/../string/cstring.h \ -+ ../sadf/../../../base/maxplus/mpmatrix.h \ -+ ../sadf/../../../base/lookup/clookup.h ../sadf/sadf_profile.h \ -+ ../sadf/sadf_markovchain.h sadf_configuration.h sadf_channel_status.h \ -+ sadf_control_status.h sadf_transition.h sadf_tps.h sadf_kernel_status.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_kernel_status.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_kernel_status.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_kernel_status.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_kernel_status.d 2022-01-07 15:16:13.812224141 +0800 -@@ -0,0 +1,54 @@ -+sadf_base_tps_sadf_kernel_status.o: sadf_kernel_status.cc sadf_kernel_status.h \ -+ ../sadf/sadf_graph.h ../sadf/sadf_process.h ../sadf/sadf_channel.h \ -+ ../sadf/sadf_component.h ../sadf/sadf_defines.h \ -+ ../sadf/../../../base/base.h ../sadf/../../../base/exception/exception.h \ -+ ../sadf/../../../base/exception/../string/cstring.h \ -+ ../sadf/../../../base/exception/../string/../basic_types.h \ -+ ../sadf/../../../base/exception/../basic_types.h \ -+ ../sadf/../../../base/fraction/fraction.h \ -+ ../sadf/../../../base/fraction/../basic_types.h \ -+ ../sadf/../../../base/fraction/../math/cmath.h \ -+ ../sadf/../../../base/fraction/../string/cstring.h \ -+ ../sadf/../../../base/xml/xml.h \ -+ ../sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../sadf/../../../base/tempfile/tempfile.h \ -+ ../sadf/../../../base/tempfile/../string/cstring.h \ -+ ../sadf/../../../base/math/cmath.h ../sadf/../../../base/random/random.h \ -+ ../sadf/../../../base/sort/sort.h ../sadf/../../../base/time/time.h \ -+ ../sadf/../../../base/time/../basic_types.h \ -+ ../sadf/../../../base/time/../string/cstring.h \ -+ ../sadf/../../../base/log/log.h \ -+ ../sadf/../../../base/log/../string/cstring.h \ -+ ../sadf/../../../base/log/../basic_types.h \ -+ ../sadf/../../../base/sequence/sequence.h \ -+ ../sadf/../../../base/sequence/../basic_types.h \ -+ ../sadf/../../../base/matrix/matrix.h \ -+ ../sadf/../../../base/matrix/../basic_types.h \ -+ ../sadf/../../../base/maxplus/maxplus.h \ -+ ../sadf/../../../base/maxplus/mptype.h \ -+ ../sadf/../../../base/maxplus/../basic_types.h \ -+ ../sadf/../../../base/maxplus/../string/cstring.h \ -+ ../sadf/../../../base/maxplus/mpmatrix.h \ -+ ../sadf/../../../base/lookup/clookup.h ../sadf/sadf_profile.h \ -+ ../sadf/sadf_markovchain.h sadf_configuration.h sadf_channel_status.h \ -+ sadf_control_status.h sadf_transition.h sadf_tps.h \ -+ sadf_detector_status.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_tps.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_tps.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_tps.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_tps.d 2022-01-07 15:16:15.035565222 +0800 -@@ -0,0 +1,53 @@ -+sadf_base_tps_sadf_tps.o: sadf_tps.cc sadf_tps.h sadf_configuration.h \ -+ ../sadf/sadf_graph.h ../sadf/sadf_process.h ../sadf/sadf_channel.h \ -+ ../sadf/sadf_component.h ../sadf/sadf_defines.h \ -+ ../sadf/../../../base/base.h ../sadf/../../../base/exception/exception.h \ -+ ../sadf/../../../base/exception/../string/cstring.h \ -+ ../sadf/../../../base/exception/../string/../basic_types.h \ -+ ../sadf/../../../base/exception/../basic_types.h \ -+ ../sadf/../../../base/fraction/fraction.h \ -+ ../sadf/../../../base/fraction/../basic_types.h \ -+ ../sadf/../../../base/fraction/../math/cmath.h \ -+ ../sadf/../../../base/fraction/../string/cstring.h \ -+ ../sadf/../../../base/xml/xml.h \ -+ ../sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../sadf/../../../base/tempfile/tempfile.h \ -+ ../sadf/../../../base/tempfile/../string/cstring.h \ -+ ../sadf/../../../base/math/cmath.h ../sadf/../../../base/random/random.h \ -+ ../sadf/../../../base/sort/sort.h ../sadf/../../../base/time/time.h \ -+ ../sadf/../../../base/time/../basic_types.h \ -+ ../sadf/../../../base/time/../string/cstring.h \ -+ ../sadf/../../../base/log/log.h \ -+ ../sadf/../../../base/log/../string/cstring.h \ -+ ../sadf/../../../base/log/../basic_types.h \ -+ ../sadf/../../../base/sequence/sequence.h \ -+ ../sadf/../../../base/sequence/../basic_types.h \ -+ ../sadf/../../../base/matrix/matrix.h \ -+ ../sadf/../../../base/matrix/../basic_types.h \ -+ ../sadf/../../../base/maxplus/maxplus.h \ -+ ../sadf/../../../base/maxplus/mptype.h \ -+ ../sadf/../../../base/maxplus/../basic_types.h \ -+ ../sadf/../../../base/maxplus/../string/cstring.h \ -+ ../sadf/../../../base/maxplus/mpmatrix.h \ -+ ../sadf/../../../base/lookup/clookup.h ../sadf/sadf_profile.h \ -+ ../sadf/sadf_markovchain.h sadf_channel_status.h sadf_control_status.h \ -+ sadf_transition.h sadf_kernel_status.h sadf_detector_status.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_transition.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_transition.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_transition.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_base_tps_sadf_transition.d 2022-01-07 15:16:16.892243695 +0800 -@@ -0,0 +1,53 @@ -+sadf_base_tps_sadf_transition.o: sadf_transition.cc sadf_transition.h \ -+ ../sadf/sadf_graph.h ../sadf/sadf_process.h ../sadf/sadf_channel.h \ -+ ../sadf/sadf_component.h ../sadf/sadf_defines.h \ -+ ../sadf/../../../base/base.h ../sadf/../../../base/exception/exception.h \ -+ ../sadf/../../../base/exception/../string/cstring.h \ -+ ../sadf/../../../base/exception/../string/../basic_types.h \ -+ ../sadf/../../../base/exception/../basic_types.h \ -+ ../sadf/../../../base/fraction/fraction.h \ -+ ../sadf/../../../base/fraction/../basic_types.h \ -+ ../sadf/../../../base/fraction/../math/cmath.h \ -+ ../sadf/../../../base/fraction/../string/cstring.h \ -+ ../sadf/../../../base/xml/xml.h \ -+ ../sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../sadf/../../../base/tempfile/tempfile.h \ -+ ../sadf/../../../base/tempfile/../string/cstring.h \ -+ ../sadf/../../../base/math/cmath.h ../sadf/../../../base/random/random.h \ -+ ../sadf/../../../base/sort/sort.h ../sadf/../../../base/time/time.h \ -+ ../sadf/../../../base/time/../basic_types.h \ -+ ../sadf/../../../base/time/../string/cstring.h \ -+ ../sadf/../../../base/log/log.h \ -+ ../sadf/../../../base/log/../string/cstring.h \ -+ ../sadf/../../../base/log/../basic_types.h \ -+ ../sadf/../../../base/sequence/sequence.h \ -+ ../sadf/../../../base/sequence/../basic_types.h \ -+ ../sadf/../../../base/matrix/matrix.h \ -+ ../sadf/../../../base/matrix/../basic_types.h \ -+ ../sadf/../../../base/maxplus/maxplus.h \ -+ ../sadf/../../../base/maxplus/mptype.h \ -+ ../sadf/../../../base/maxplus/../basic_types.h \ -+ ../sadf/../../../base/maxplus/../string/cstring.h \ -+ ../sadf/../../../base/maxplus/mpmatrix.h \ -+ ../sadf/../../../base/lookup/clookup.h ../sadf/sadf_profile.h \ -+ ../sadf/sadf_markovchain.h sadf_configuration.h sadf_channel_status.h \ -+ sadf_control_status.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_print_dot_sadf2dot.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_print_dot_sadf2dot.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_print_dot_sadf2dot.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_print_dot_sadf2dot.d 2022-01-07 15:16:19.618927808 +0800 -@@ -0,0 +1,55 @@ -+sadf_print_dot_sadf2dot.o: sadf2dot.cc sadf2dot.h ../../base/sadf/sadf_graph.h \ -+ ../../base/sadf/sadf_process.h ../../base/sadf/sadf_channel.h \ -+ ../../base/sadf/sadf_component.h ../../base/sadf/sadf_defines.h \ -+ ../../base/sadf/../../../base/base.h \ -+ ../../base/sadf/../../../base/exception/exception.h \ -+ ../../base/sadf/../../../base/exception/../string/cstring.h \ -+ ../../base/sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../base/sadf/../../../base/exception/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/fraction.h \ -+ ../../base/sadf/../../../base/fraction/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/../math/cmath.h \ -+ ../../base/sadf/../../../base/fraction/../string/cstring.h \ -+ ../../base/sadf/../../../base/xml/xml.h \ -+ ../../base/sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/sadf/../../../base/tempfile/tempfile.h \ -+ ../../base/sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../base/sadf/../../../base/math/cmath.h \ -+ ../../base/sadf/../../../base/random/random.h \ -+ ../../base/sadf/../../../base/sort/sort.h \ -+ ../../base/sadf/../../../base/time/time.h \ -+ ../../base/sadf/../../../base/time/../basic_types.h \ -+ ../../base/sadf/../../../base/time/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/log.h \ -+ ../../base/sadf/../../../base/log/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/../basic_types.h \ -+ ../../base/sadf/../../../base/sequence/sequence.h \ -+ ../../base/sadf/../../../base/sequence/../basic_types.h \ -+ ../../base/sadf/../../../base/matrix/matrix.h \ -+ ../../base/sadf/../../../base/matrix/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/maxplus.h \ -+ ../../base/sadf/../../../base/maxplus/mptype.h \ -+ ../../base/sadf/../../../base/maxplus/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../base/sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../base/sadf/../../../base/lookup/clookup.h \ -+ ../../base/sadf/sadf_profile.h ../../base/sadf/sadf_markovchain.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_print_html_sadf2html.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_print_html_sadf2html.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_print_html_sadf2html.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_print_html_sadf2html.d 2022-01-07 15:16:20.938936296 +0800 -@@ -0,0 +1,55 @@ -+sadf_print_html_sadf2html.o: sadf2html.cc sadf2html.h ../../base/sadf/sadf_graph.h \ -+ ../../base/sadf/sadf_process.h ../../base/sadf/sadf_channel.h \ -+ ../../base/sadf/sadf_component.h ../../base/sadf/sadf_defines.h \ -+ ../../base/sadf/../../../base/base.h \ -+ ../../base/sadf/../../../base/exception/exception.h \ -+ ../../base/sadf/../../../base/exception/../string/cstring.h \ -+ ../../base/sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../base/sadf/../../../base/exception/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/fraction.h \ -+ ../../base/sadf/../../../base/fraction/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/../math/cmath.h \ -+ ../../base/sadf/../../../base/fraction/../string/cstring.h \ -+ ../../base/sadf/../../../base/xml/xml.h \ -+ ../../base/sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/sadf/../../../base/tempfile/tempfile.h \ -+ ../../base/sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../base/sadf/../../../base/math/cmath.h \ -+ ../../base/sadf/../../../base/random/random.h \ -+ ../../base/sadf/../../../base/sort/sort.h \ -+ ../../base/sadf/../../../base/time/time.h \ -+ ../../base/sadf/../../../base/time/../basic_types.h \ -+ ../../base/sadf/../../../base/time/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/log.h \ -+ ../../base/sadf/../../../base/log/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/../basic_types.h \ -+ ../../base/sadf/../../../base/sequence/sequence.h \ -+ ../../base/sadf/../../../base/sequence/../basic_types.h \ -+ ../../base/sadf/../../../base/matrix/matrix.h \ -+ ../../base/sadf/../../../base/matrix/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/maxplus.h \ -+ ../../base/sadf/../../../base/maxplus/mptype.h \ -+ ../../base/sadf/../../../base/maxplus/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../base/sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../base/sadf/../../../base/lookup/clookup.h \ -+ ../../base/sadf/sadf_profile.h ../../base/sadf/sadf_markovchain.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_print_poosl_sadf2poosl_cluster.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_print_poosl_sadf2poosl_cluster.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_print_poosl_sadf2poosl_cluster.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_print_poosl_sadf2poosl_cluster.d 2022-01-07 15:16:25.348964870 +0800 -@@ -0,0 +1,58 @@ -+sadf_print_poosl_sadf2poosl_cluster.o: sadf2poosl_cluster.cc sadf2poosl_cluster.h \ -+ sadf2poosl_process.h sadf2poosl_data.h ../../base/sadf/sadf_graph.h \ -+ ../../base/sadf/sadf_process.h ../../base/sadf/sadf_channel.h \ -+ ../../base/sadf/sadf_component.h ../../base/sadf/sadf_defines.h \ -+ ../../base/sadf/../../../base/base.h \ -+ ../../base/sadf/../../../base/exception/exception.h \ -+ ../../base/sadf/../../../base/exception/../string/cstring.h \ -+ ../../base/sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../base/sadf/../../../base/exception/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/fraction.h \ -+ ../../base/sadf/../../../base/fraction/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/../math/cmath.h \ -+ ../../base/sadf/../../../base/fraction/../string/cstring.h \ -+ ../../base/sadf/../../../base/xml/xml.h \ -+ ../../base/sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/sadf/../../../base/tempfile/tempfile.h \ -+ ../../base/sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../base/sadf/../../../base/math/cmath.h \ -+ ../../base/sadf/../../../base/random/random.h \ -+ ../../base/sadf/../../../base/sort/sort.h \ -+ ../../base/sadf/../../../base/time/time.h \ -+ ../../base/sadf/../../../base/time/../basic_types.h \ -+ ../../base/sadf/../../../base/time/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/log.h \ -+ ../../base/sadf/../../../base/log/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/../basic_types.h \ -+ ../../base/sadf/../../../base/sequence/sequence.h \ -+ ../../base/sadf/../../../base/sequence/../basic_types.h \ -+ ../../base/sadf/../../../base/matrix/matrix.h \ -+ ../../base/sadf/../../../base/matrix/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/maxplus.h \ -+ ../../base/sadf/../../../base/maxplus/mptype.h \ -+ ../../base/sadf/../../../base/maxplus/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../base/sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../base/sadf/../../../base/lookup/clookup.h \ -+ ../../base/sadf/sadf_profile.h ../../base/sadf/sadf_markovchain.h \ -+ ../../simulation/settings/sadf_settings.h \ -+ ../../simulation/settings/../../base/sadf/sadf_graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_print_poosl_sadf2poosl.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_print_poosl_sadf2poosl.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_print_poosl_sadf2poosl.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_print_poosl_sadf2poosl.d 2022-01-07 15:16:24.205624098 +0800 -@@ -0,0 +1,58 @@ -+sadf_print_poosl_sadf2poosl.o: sadf2poosl.cc sadf2poosl.h sadf2poosl_cluster.h \ -+ sadf2poosl_process.h sadf2poosl_data.h ../../base/sadf/sadf_graph.h \ -+ ../../base/sadf/sadf_process.h ../../base/sadf/sadf_channel.h \ -+ ../../base/sadf/sadf_component.h ../../base/sadf/sadf_defines.h \ -+ ../../base/sadf/../../../base/base.h \ -+ ../../base/sadf/../../../base/exception/exception.h \ -+ ../../base/sadf/../../../base/exception/../string/cstring.h \ -+ ../../base/sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../base/sadf/../../../base/exception/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/fraction.h \ -+ ../../base/sadf/../../../base/fraction/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/../math/cmath.h \ -+ ../../base/sadf/../../../base/fraction/../string/cstring.h \ -+ ../../base/sadf/../../../base/xml/xml.h \ -+ ../../base/sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/sadf/../../../base/tempfile/tempfile.h \ -+ ../../base/sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../base/sadf/../../../base/math/cmath.h \ -+ ../../base/sadf/../../../base/random/random.h \ -+ ../../base/sadf/../../../base/sort/sort.h \ -+ ../../base/sadf/../../../base/time/time.h \ -+ ../../base/sadf/../../../base/time/../basic_types.h \ -+ ../../base/sadf/../../../base/time/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/log.h \ -+ ../../base/sadf/../../../base/log/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/../basic_types.h \ -+ ../../base/sadf/../../../base/sequence/sequence.h \ -+ ../../base/sadf/../../../base/sequence/../basic_types.h \ -+ ../../base/sadf/../../../base/matrix/matrix.h \ -+ ../../base/sadf/../../../base/matrix/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/maxplus.h \ -+ ../../base/sadf/../../../base/maxplus/mptype.h \ -+ ../../base/sadf/../../../base/maxplus/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../base/sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../base/sadf/../../../base/lookup/clookup.h \ -+ ../../base/sadf/sadf_profile.h ../../base/sadf/sadf_markovchain.h \ -+ ../../simulation/settings/sadf_settings.h \ -+ ../../simulation/settings/../../base/sadf/sadf_graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_print_poosl_sadf2poosl_data.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_print_poosl_sadf2poosl_data.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_print_poosl_sadf2poosl_data.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_print_poosl_sadf2poosl_data.d 2022-01-07 15:16:26.868974792 +0800 -@@ -0,0 +1,55 @@ -+sadf_print_poosl_sadf2poosl_data.o: sadf2poosl_data.cc sadf2poosl_data.h \ -+ ../../base/sadf/sadf_graph.h ../../base/sadf/sadf_process.h \ -+ ../../base/sadf/sadf_channel.h ../../base/sadf/sadf_component.h \ -+ ../../base/sadf/sadf_defines.h ../../base/sadf/../../../base/base.h \ -+ ../../base/sadf/../../../base/exception/exception.h \ -+ ../../base/sadf/../../../base/exception/../string/cstring.h \ -+ ../../base/sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../base/sadf/../../../base/exception/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/fraction.h \ -+ ../../base/sadf/../../../base/fraction/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/../math/cmath.h \ -+ ../../base/sadf/../../../base/fraction/../string/cstring.h \ -+ ../../base/sadf/../../../base/xml/xml.h \ -+ ../../base/sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/sadf/../../../base/tempfile/tempfile.h \ -+ ../../base/sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../base/sadf/../../../base/math/cmath.h \ -+ ../../base/sadf/../../../base/random/random.h \ -+ ../../base/sadf/../../../base/sort/sort.h \ -+ ../../base/sadf/../../../base/time/time.h \ -+ ../../base/sadf/../../../base/time/../basic_types.h \ -+ ../../base/sadf/../../../base/time/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/log.h \ -+ ../../base/sadf/../../../base/log/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/../basic_types.h \ -+ ../../base/sadf/../../../base/sequence/sequence.h \ -+ ../../base/sadf/../../../base/sequence/../basic_types.h \ -+ ../../base/sadf/../../../base/matrix/matrix.h \ -+ ../../base/sadf/../../../base/matrix/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/maxplus.h \ -+ ../../base/sadf/../../../base/maxplus/mptype.h \ -+ ../../base/sadf/../../../base/maxplus/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../base/sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../base/sadf/../../../base/lookup/clookup.h \ -+ ../../base/sadf/sadf_profile.h ../../base/sadf/sadf_markovchain.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_print_poosl_sadf2poosl_process.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_print_poosl_sadf2poosl_process.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_print_poosl_sadf2poosl_process.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_print_poosl_sadf2poosl_process.d 2022-01-07 15:16:29.555659091 +0800 -@@ -0,0 +1,58 @@ -+sadf_print_poosl_sadf2poosl_process.o: sadf2poosl_process.cc sadf2poosl_process.h \ -+ sadf2poosl_data.h ../../base/sadf/sadf_graph.h \ -+ ../../base/sadf/sadf_process.h ../../base/sadf/sadf_channel.h \ -+ ../../base/sadf/sadf_component.h ../../base/sadf/sadf_defines.h \ -+ ../../base/sadf/../../../base/base.h \ -+ ../../base/sadf/../../../base/exception/exception.h \ -+ ../../base/sadf/../../../base/exception/../string/cstring.h \ -+ ../../base/sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../base/sadf/../../../base/exception/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/fraction.h \ -+ ../../base/sadf/../../../base/fraction/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/../math/cmath.h \ -+ ../../base/sadf/../../../base/fraction/../string/cstring.h \ -+ ../../base/sadf/../../../base/xml/xml.h \ -+ ../../base/sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/sadf/../../../base/tempfile/tempfile.h \ -+ ../../base/sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../base/sadf/../../../base/math/cmath.h \ -+ ../../base/sadf/../../../base/random/random.h \ -+ ../../base/sadf/../../../base/sort/sort.h \ -+ ../../base/sadf/../../../base/time/time.h \ -+ ../../base/sadf/../../../base/time/../basic_types.h \ -+ ../../base/sadf/../../../base/time/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/log.h \ -+ ../../base/sadf/../../../base/log/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/../basic_types.h \ -+ ../../base/sadf/../../../base/sequence/sequence.h \ -+ ../../base/sadf/../../../base/sequence/../basic_types.h \ -+ ../../base/sadf/../../../base/matrix/matrix.h \ -+ ../../base/sadf/../../../base/matrix/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/maxplus.h \ -+ ../../base/sadf/../../../base/maxplus/mptype.h \ -+ ../../base/sadf/../../../base/maxplus/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../base/sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../base/sadf/../../../base/lookup/clookup.h \ -+ ../../base/sadf/sadf_profile.h ../../base/sadf/sadf_markovchain.h \ -+ ../../simulation/settings/sadf_settings.h \ -+ ../../simulation/settings/../../base/sadf/sadf_graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_print_xml_sadf2xml.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_print_xml_sadf2xml.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_print_xml_sadf2xml.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_print_xml_sadf2xml.d 2022-01-07 15:16:17.988917363 +0800 -@@ -0,0 +1,55 @@ -+sadf_print_xml_sadf2xml.o: sadf2xml.cc sadf2xml.h ../../base/sadf/sadf_graph.h \ -+ ../../base/sadf/sadf_process.h ../../base/sadf/sadf_channel.h \ -+ ../../base/sadf/sadf_component.h ../../base/sadf/sadf_defines.h \ -+ ../../base/sadf/../../../base/base.h \ -+ ../../base/sadf/../../../base/exception/exception.h \ -+ ../../base/sadf/../../../base/exception/../string/cstring.h \ -+ ../../base/sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../base/sadf/../../../base/exception/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/fraction.h \ -+ ../../base/sadf/../../../base/fraction/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/../math/cmath.h \ -+ ../../base/sadf/../../../base/fraction/../string/cstring.h \ -+ ../../base/sadf/../../../base/xml/xml.h \ -+ ../../base/sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/sadf/../../../base/tempfile/tempfile.h \ -+ ../../base/sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../base/sadf/../../../base/math/cmath.h \ -+ ../../base/sadf/../../../base/random/random.h \ -+ ../../base/sadf/../../../base/sort/sort.h \ -+ ../../base/sadf/../../../base/time/time.h \ -+ ../../base/sadf/../../../base/time/../basic_types.h \ -+ ../../base/sadf/../../../base/time/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/log.h \ -+ ../../base/sadf/../../../base/log/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/../basic_types.h \ -+ ../../base/sadf/../../../base/sequence/sequence.h \ -+ ../../base/sadf/../../../base/sequence/../basic_types.h \ -+ ../../base/sadf/../../../base/matrix/matrix.h \ -+ ../../base/sadf/../../../base/matrix/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/maxplus.h \ -+ ../../base/sadf/../../../base/maxplus/mptype.h \ -+ ../../base/sadf/../../../base/maxplus/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../base/sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../base/sadf/../../../base/lookup/clookup.h \ -+ ../../base/sadf/sadf_profile.h ../../base/sadf/sadf_markovchain.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_simulation_settings_sadf_settings.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_simulation_settings_sadf_settings.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_simulation_settings_sadf_settings.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_simulation_settings_sadf_settings.d 2022-01-07 15:16:31.872341054 +0800 -@@ -0,0 +1,55 @@ -+sadf_simulation_settings_sadf_settings.o: sadf_settings.cc sadf_settings.h \ -+ ../../base/sadf/sadf_graph.h ../../base/sadf/sadf_process.h \ -+ ../../base/sadf/sadf_channel.h ../../base/sadf/sadf_component.h \ -+ ../../base/sadf/sadf_defines.h ../../base/sadf/../../../base/base.h \ -+ ../../base/sadf/../../../base/exception/exception.h \ -+ ../../base/sadf/../../../base/exception/../string/cstring.h \ -+ ../../base/sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../base/sadf/../../../base/exception/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/fraction.h \ -+ ../../base/sadf/../../../base/fraction/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/../math/cmath.h \ -+ ../../base/sadf/../../../base/fraction/../string/cstring.h \ -+ ../../base/sadf/../../../base/xml/xml.h \ -+ ../../base/sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/sadf/../../../base/tempfile/tempfile.h \ -+ ../../base/sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../base/sadf/../../../base/math/cmath.h \ -+ ../../base/sadf/../../../base/random/random.h \ -+ ../../base/sadf/../../../base/sort/sort.h \ -+ ../../base/sadf/../../../base/time/time.h \ -+ ../../base/sadf/../../../base/time/../basic_types.h \ -+ ../../base/sadf/../../../base/time/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/log.h \ -+ ../../base/sadf/../../../base/log/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/../basic_types.h \ -+ ../../base/sadf/../../../base/sequence/sequence.h \ -+ ../../base/sadf/../../../base/sequence/../basic_types.h \ -+ ../../base/sadf/../../../base/matrix/matrix.h \ -+ ../../base/sadf/../../../base/matrix/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/maxplus.h \ -+ ../../base/sadf/../../../base/maxplus/mptype.h \ -+ ../../base/sadf/../../../base/maxplus/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../base/sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../base/sadf/../../../base/lookup/clookup.h \ -+ ../../base/sadf/sadf_profile.h ../../base/sadf/sadf_markovchain.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_tools_sdf3analyze_sdf3analyze.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_tools_sdf3analyze_sdf3analyze.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_tools_sdf3analyze_sdf3analyze.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_tools_sdf3analyze_sdf3analyze.d 2022-01-07 15:16:53.459154415 +0800 -@@ -0,0 +1,382 @@ -+sadf_tools_sdf3analyze_sdf3analyze.o: sdf3analyze.cc sdf3analyze.h ../../sadf.h \ -+ ../../base/parser/sadf_parser.h ../../base/parser/../sadf/sadf_graph.h \ -+ ../../base/parser/../sadf/sadf_process.h \ -+ ../../base/parser/../sadf/sadf_channel.h \ -+ ../../base/parser/../sadf/sadf_component.h \ -+ ../../base/parser/../sadf/sadf_defines.h \ -+ ../../base/parser/../sadf/../../../base/base.h \ -+ ../../base/parser/../sadf/../../../base/exception/exception.h \ -+ ../../base/parser/../sadf/../../../base/exception/../string/cstring.h \ -+ ../../base/parser/../sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/exception/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/fraction/fraction.h \ -+ ../../base/parser/../sadf/../../../base/fraction/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/fraction/../math/cmath.h \ -+ ../../base/parser/../sadf/../../../base/fraction/../string/cstring.h \ -+ ../../base/parser/../sadf/../../../base/xml/xml.h \ -+ ../../base/parser/../sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/parser/../sadf/../../../base/tempfile/tempfile.h \ -+ ../../base/parser/../sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../base/parser/../sadf/../../../base/math/cmath.h \ -+ ../../base/parser/../sadf/../../../base/random/random.h \ -+ ../../base/parser/../sadf/../../../base/sort/sort.h \ -+ ../../base/parser/../sadf/../../../base/time/time.h \ -+ ../../base/parser/../sadf/../../../base/time/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/time/../string/cstring.h \ -+ ../../base/parser/../sadf/../../../base/log/log.h \ -+ ../../base/parser/../sadf/../../../base/log/../string/cstring.h \ -+ ../../base/parser/../sadf/../../../base/log/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/sequence/sequence.h \ -+ ../../base/parser/../sadf/../../../base/sequence/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/matrix/matrix.h \ -+ ../../base/parser/../sadf/../../../base/matrix/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/maxplus/maxplus.h \ -+ ../../base/parser/../sadf/../../../base/maxplus/mptype.h \ -+ ../../base/parser/../sadf/../../../base/maxplus/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../base/parser/../sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../base/parser/../sadf/../../../base/lookup/clookup.h \ -+ ../../base/parser/../sadf/sadf_profile.h \ -+ ../../base/parser/../sadf/sadf_markovchain.h \ -+ ../../verification/moc/sadf_moc.h \ -+ ../../verification/moc/../../base/sadf/sadf_graph.h \ -+ ../../verification/simple/sadf_simple.h \ -+ ../../verification/simple/../../base/sadf/sadf_graph.h \ -+ ../../verification/simple/sadf_ergodic.h \ -+ ../../verification/consistency/sadf_consistency.h \ -+ ../../verification/consistency/../../base/sadf/sadf_graph.h \ -+ ../../verification/consistency/../../transformation/scenario/sadf_fix_scenario.h \ -+ ../../verification/consistency/../../transformation/scenario/../../base/sadf/sadf_graph.h \ -+ ../../verification/consistency/../../transformation/sdf/sadf2sdf.h \ -+ ../../verification/consistency/../../transformation/sdf/../../base/sadf/sadf_graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../verification/moc/sadf_moc.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/sdf.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/channel.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/actor.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/port.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/component.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/base.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../basic_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/channel.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/../untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/timed_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/actor.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/acyclic.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/../untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/components.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/../../../base/base.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/connected.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/cycle.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/dfs.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/repetition_vector.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/hsdf/check.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/analysis.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffer.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/latency.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/minimal.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/selftimed.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/mcm.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/throughput.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/deadlock.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/generate/generate.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/generate/../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/buffer_throughput/buffy.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/dot/dot.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/hapi/hapi.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/html.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/schedule/schedule.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/xml/xml.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/flow.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/autoconc.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/buffersize.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/apg.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/apg.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/hsdf.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/unfold.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/misc/reverse_channels.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../analysis/graph/sadf_state_space.h \ -+ ../../analysis/graph/../schedulers/sadf_asap.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_tps.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_configuration.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/../sadf/sadf_graph.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_channel_status.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_control_status.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_transition.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_kernel_status.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_detector_status.h \ -+ ../../analysis/process/sadf_inter_firing_latency.h \ -+ ../../analysis/process/../../verification/simple/sadf_simple.h \ -+ ../../analysis/process/../../verification/simple/sadf_ergodic.h \ -+ ../../analysis/process/../schedulers/sadf_asap_reduced.h \ -+ ../../analysis/process/../schedulers/../../base/tps/sadf_tps.h \ -+ ../../analysis/process/sadf_response_delay.h \ -+ ../../analysis/process/sadf_deadline_miss.h \ -+ ../../analysis/channel/sadf_buffer_occupancy.h \ -+ ../../analysis/channel/../../verification/simple/sadf_simple.h \ -+ ../../analysis/channel/../../verification/simple/sadf_ergodic.h \ -+ ../../analysis/channel/../schedulers/sadf_asap_reduced.h \ -+ ../../simulation/settings/sadf_settings.h \ -+ ../../simulation/settings/../../base/sadf/sadf_graph.h \ -+ ../../print/xml/sadf2xml.h ../../print/xml/../../base/sadf/sadf_graph.h \ -+ ../../print/dot/sadf2dot.h ../../print/dot/../../base/sadf/sadf_graph.h \ -+ ../../print/html/sadf2html.h \ -+ ../../print/html/../../base/sadf/sadf_graph.h \ -+ ../../print/poosl/sadf2poosl.h ../../print/poosl/sadf2poosl_cluster.h \ -+ ../../print/poosl/sadf2poosl_process.h \ -+ ../../print/poosl/sadf2poosl_data.h \ -+ ../../print/poosl/../../base/sadf/sadf_graph.h \ -+ ../../print/poosl/../../simulation/settings/sadf_settings.h \ -+ ../../transformation/timing/sadf_timing.h \ -+ ../../transformation/timing/../../base/sadf/sadf_graph.h \ -+ ../../transformation/scenario/sadf_fix_scenario.h \ -+ ../../transformation/sdf/sadf2sdf.h ../../transformation/sdf/sdf2sadf.h \ -+ ../../transformation/sdf/../../../sdf/sdf.h \ -+ ../../transformation/sdf/../../base/sadf/sadf_graph.h \ -+ ../../transformation/csdf/sadf2csdf.h \ -+ ../../transformation/csdf/../../base/sadf/sadf_graph.h \ -+ ../../transformation/csdf/../../verification/moc/sadf_moc.h \ -+ ../../transformation/csdf/../../../csdf/csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/rate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/actor.h \ -+ ../../transformation/csdf/../../../csdf/base/algo/components.h \ -+ ../../transformation/csdf/../../../csdf/base/algo/../../csdf.h \ -+ ../../transformation/csdf/../../../csdf/base/algo/dfs.h \ -+ ../../transformation/csdf/../../../csdf/analysis/analysis.h \ -+ ../../transformation/csdf/../../../csdf/analysis/buffersizing/buffersizing.h \ -+ ../../transformation/csdf/../../../csdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/sdf.h \ -+ ../../transformation/csdf/../../../csdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../transformation/csdf/../../../csdf/analysis/throughput/throughput.h \ -+ ../../transformation/csdf/../../../csdf/analysis/throughput/selftimed_throughput.h \ -+ ../../transformation/csdf/../../../csdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../transformation/csdf/../../../csdf/generate/generate.h \ -+ ../../transformation/csdf/../../../csdf/generate/../csdf.h \ -+ ../../transformation/csdf/../../../csdf/output/buffer_throughput/buffy.h \ -+ ../../transformation/csdf/../../../csdf/output/buffer_throughput/../../csdf.h \ -+ ../../transformation/csdf/../../../csdf/output/xml/xml.h \ -+ ../../transformation/csdf/../../../csdf/output/xml/../../csdf.h \ -+ ../../transformation/csdf/../../../csdf/transform/to_sdf/sdftocsdf.h \ -+ ../../transformation/csdf/../../../csdf/transform/to_sdf/../../csdf.h \ -+ ../../transformation/csdf/csdf2sadf.h \ -+ ../../transformation/fsmsadf/sadf2fsmsadf.h \ -+ ../../transformation/fsmsadf/../../base/sadf/sadf_graph.h \ -+ ../../transformation/fsmsadf/../scenario/sadf_collection.h \ -+ ../../transformation/fsmsadf/../scenario/sadf_fix_scenario.h \ -+ ../../transformation/fsmsadf/../scenario/../../verification/moc/sadf_moc.h \ -+ ../../transformation/fsmsadf/../scenario/../sdf/sadf2sdf.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/fsmsadf.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/actor.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/port.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/type.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/component.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/../../base/base.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/memorytype.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/scenario.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/channel.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/actor.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/../../sdf/sdf.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/channel.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/fsm.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/port.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/analysis.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/throughput.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/scenariograph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/fsm_ref_schedule.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/fsm_scenario_transitions.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/statespace.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/../../base/fsm.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/maxplusautomaton.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/mpexplore.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/repetition_vector.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/../../../base/base.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/generate/generate.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/generate/../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/memory.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/binding.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/graph_binding.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/virtual_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/virtual_platform/base/../../base_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/compsoc_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/compsoc_platform/base/../../base_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/mamps_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/mamps_platform/base/../../base_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/transform/transform.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/transform/worst-case/worst-case.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/transform/worst-case/../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/transform/auto-concurrency/auto-concurrency.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/transform/auto-concurrency/../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/output/html/html.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/output/html/../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../../transformation/scenario/sadf_collection.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_tools_sdf3convert_csdf2sadf_sdf3convert.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_tools_sdf3convert_csdf2sadf_sdf3convert.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_tools_sdf3convert_csdf2sadf_sdf3convert.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_tools_sdf3convert_csdf2sadf_sdf3convert.d 2022-01-07 15:16:59.559197198 +0800 -@@ -0,0 +1,387 @@ -+sadf_tools_sdf3convert_csdf2sadf_sdf3convert.o: sdf3convert.cc sdf3convert.h ../../../sadf.h \ -+ ../../../base/parser/sadf_parser.h \ -+ ../../../base/parser/../sadf/sadf_graph.h \ -+ ../../../base/parser/../sadf/sadf_process.h \ -+ ../../../base/parser/../sadf/sadf_channel.h \ -+ ../../../base/parser/../sadf/sadf_component.h \ -+ ../../../base/parser/../sadf/sadf_defines.h \ -+ ../../../base/parser/../sadf/../../../base/base.h \ -+ ../../../base/parser/../sadf/../../../base/exception/exception.h \ -+ ../../../base/parser/../sadf/../../../base/exception/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/exception/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/fraction/fraction.h \ -+ ../../../base/parser/../sadf/../../../base/fraction/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/fraction/../math/cmath.h \ -+ ../../../base/parser/../sadf/../../../base/fraction/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/xml/xml.h \ -+ ../../../base/parser/../sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/parser/../sadf/../../../base/tempfile/tempfile.h \ -+ ../../../base/parser/../sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/math/cmath.h \ -+ ../../../base/parser/../sadf/../../../base/random/random.h \ -+ ../../../base/parser/../sadf/../../../base/sort/sort.h \ -+ ../../../base/parser/../sadf/../../../base/time/time.h \ -+ ../../../base/parser/../sadf/../../../base/time/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/time/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/log/log.h \ -+ ../../../base/parser/../sadf/../../../base/log/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/log/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/sequence/sequence.h \ -+ ../../../base/parser/../sadf/../../../base/sequence/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/matrix/matrix.h \ -+ ../../../base/parser/../sadf/../../../base/matrix/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/maxplus.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/mptype.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../../base/parser/../sadf/../../../base/lookup/clookup.h \ -+ ../../../base/parser/../sadf/sadf_profile.h \ -+ ../../../base/parser/../sadf/sadf_markovchain.h \ -+ ../../../verification/moc/sadf_moc.h \ -+ ../../../verification/moc/../../base/sadf/sadf_graph.h \ -+ ../../../verification/simple/sadf_simple.h \ -+ ../../../verification/simple/../../base/sadf/sadf_graph.h \ -+ ../../../verification/simple/sadf_ergodic.h \ -+ ../../../verification/consistency/sadf_consistency.h \ -+ ../../../verification/consistency/../../base/sadf/sadf_graph.h \ -+ ../../../verification/consistency/../../transformation/scenario/sadf_fix_scenario.h \ -+ ../../../verification/consistency/../../transformation/scenario/../../base/sadf/sadf_graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/sadf2sdf.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../base/sadf/sadf_graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../verification/moc/sadf_moc.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/sdf.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/channel.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/actor.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/port.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/component.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/base.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/channel.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/../untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/timed_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/actor.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/acyclic.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/../untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/components.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/../../../base/base.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/connected.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/cycle.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/dfs.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/repetition_vector.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/hsdf/check.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/analysis.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffer.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/latency.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/minimal.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/selftimed.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/mcm.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/throughput.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/deadlock.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/generate/generate.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/generate/../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/buffer_throughput/buffy.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/dot/dot.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/hapi/hapi.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/html.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/schedule/schedule.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/xml/xml.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/flow.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/autoconc.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/buffersize.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/apg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/apg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/hsdf.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/unfold.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/misc/reverse_channels.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../../analysis/graph/sadf_state_space.h \ -+ ../../../analysis/graph/../schedulers/sadf_asap.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_tps.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_configuration.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/../sadf/sadf_graph.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_channel_status.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_control_status.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_transition.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_kernel_status.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_detector_status.h \ -+ ../../../analysis/process/sadf_inter_firing_latency.h \ -+ ../../../analysis/process/../../verification/simple/sadf_simple.h \ -+ ../../../analysis/process/../../verification/simple/sadf_ergodic.h \ -+ ../../../analysis/process/../schedulers/sadf_asap_reduced.h \ -+ ../../../analysis/process/../schedulers/../../base/tps/sadf_tps.h \ -+ ../../../analysis/process/sadf_response_delay.h \ -+ ../../../analysis/process/sadf_deadline_miss.h \ -+ ../../../analysis/channel/sadf_buffer_occupancy.h \ -+ ../../../analysis/channel/../../verification/simple/sadf_simple.h \ -+ ../../../analysis/channel/../../verification/simple/sadf_ergodic.h \ -+ ../../../analysis/channel/../schedulers/sadf_asap_reduced.h \ -+ ../../../simulation/settings/sadf_settings.h \ -+ ../../../simulation/settings/../../base/sadf/sadf_graph.h \ -+ ../../../print/xml/sadf2xml.h \ -+ ../../../print/xml/../../base/sadf/sadf_graph.h \ -+ ../../../print/dot/sadf2dot.h \ -+ ../../../print/dot/../../base/sadf/sadf_graph.h \ -+ ../../../print/html/sadf2html.h \ -+ ../../../print/html/../../base/sadf/sadf_graph.h \ -+ ../../../print/poosl/sadf2poosl.h \ -+ ../../../print/poosl/sadf2poosl_cluster.h \ -+ ../../../print/poosl/sadf2poosl_process.h \ -+ ../../../print/poosl/sadf2poosl_data.h \ -+ ../../../print/poosl/../../base/sadf/sadf_graph.h \ -+ ../../../print/poosl/../../simulation/settings/sadf_settings.h \ -+ ../../../transformation/timing/sadf_timing.h \ -+ ../../../transformation/timing/../../base/sadf/sadf_graph.h \ -+ ../../../transformation/scenario/sadf_fix_scenario.h \ -+ ../../../transformation/sdf/sadf2sdf.h \ -+ ../../../transformation/sdf/sdf2sadf.h \ -+ ../../../transformation/sdf/../../../sdf/sdf.h \ -+ ../../../transformation/sdf/../../base/sadf/sadf_graph.h \ -+ ../../../transformation/csdf/sadf2csdf.h \ -+ ../../../transformation/csdf/../../base/sadf/sadf_graph.h \ -+ ../../../transformation/csdf/../../verification/moc/sadf_moc.h \ -+ ../../../transformation/csdf/../../../csdf/csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/rate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/actor.h \ -+ ../../../transformation/csdf/../../../csdf/base/algo/components.h \ -+ ../../../transformation/csdf/../../../csdf/base/algo/../../csdf.h \ -+ ../../../transformation/csdf/../../../csdf/base/algo/dfs.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/analysis.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/buffersizing/buffersizing.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/sdf.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/throughput/throughput.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/throughput/selftimed_throughput.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../../transformation/csdf/../../../csdf/generate/generate.h \ -+ ../../../transformation/csdf/../../../csdf/generate/../csdf.h \ -+ ../../../transformation/csdf/../../../csdf/output/buffer_throughput/buffy.h \ -+ ../../../transformation/csdf/../../../csdf/output/buffer_throughput/../../csdf.h \ -+ ../../../transformation/csdf/../../../csdf/output/xml/xml.h \ -+ ../../../transformation/csdf/../../../csdf/output/xml/../../csdf.h \ -+ ../../../transformation/csdf/../../../csdf/transform/to_sdf/sdftocsdf.h \ -+ ../../../transformation/csdf/../../../csdf/transform/to_sdf/../../csdf.h \ -+ ../../../transformation/csdf/csdf2sadf.h \ -+ ../../../transformation/fsmsadf/sadf2fsmsadf.h \ -+ ../../../transformation/fsmsadf/../../base/sadf/sadf_graph.h \ -+ ../../../transformation/fsmsadf/../scenario/sadf_collection.h \ -+ ../../../transformation/fsmsadf/../scenario/sadf_fix_scenario.h \ -+ ../../../transformation/fsmsadf/../scenario/../../verification/moc/sadf_moc.h \ -+ ../../../transformation/fsmsadf/../scenario/../sdf/sadf2sdf.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/fsmsadf.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/actor.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/port.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/type.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/component.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/../../base/base.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/memorytype.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/scenario.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/channel.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/actor.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/../../sdf/sdf.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/channel.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/fsm.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/port.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/analysis.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/throughput.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/scenariograph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/fsm_ref_schedule.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/fsm_scenario_transitions.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/statespace.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/../../base/fsm.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/maxplusautomaton.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/mpexplore.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/repetition_vector.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/../../../base/base.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/generate/generate.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/generate/../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/memory.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/binding.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/graph_binding.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/virtual_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/virtual_platform/base/../../base_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/compsoc_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/compsoc_platform/base/../../base_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/mamps_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/mamps_platform/base/../../base_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/transform.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/worst-case/worst-case.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/worst-case/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/auto-concurrency/auto-concurrency.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/auto-concurrency/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/output/html/html.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/output/html/../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../../../transformation/scenario/sadf_collection.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_tools_sdf3convert_sadf2csdf_sdf3convert.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_tools_sdf3convert_sadf2csdf_sdf3convert.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_tools_sdf3convert_sadf2csdf_sdf3convert.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_tools_sdf3convert_sadf2csdf_sdf3convert.d 2022-01-07 15:17:04.969235621 +0800 -@@ -0,0 +1,387 @@ -+sadf_tools_sdf3convert_sadf2csdf_sdf3convert.o: sdf3convert.cc sdf3convert.h ../../../sadf.h \ -+ ../../../base/parser/sadf_parser.h \ -+ ../../../base/parser/../sadf/sadf_graph.h \ -+ ../../../base/parser/../sadf/sadf_process.h \ -+ ../../../base/parser/../sadf/sadf_channel.h \ -+ ../../../base/parser/../sadf/sadf_component.h \ -+ ../../../base/parser/../sadf/sadf_defines.h \ -+ ../../../base/parser/../sadf/../../../base/base.h \ -+ ../../../base/parser/../sadf/../../../base/exception/exception.h \ -+ ../../../base/parser/../sadf/../../../base/exception/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/exception/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/fraction/fraction.h \ -+ ../../../base/parser/../sadf/../../../base/fraction/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/fraction/../math/cmath.h \ -+ ../../../base/parser/../sadf/../../../base/fraction/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/xml/xml.h \ -+ ../../../base/parser/../sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/parser/../sadf/../../../base/tempfile/tempfile.h \ -+ ../../../base/parser/../sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/math/cmath.h \ -+ ../../../base/parser/../sadf/../../../base/random/random.h \ -+ ../../../base/parser/../sadf/../../../base/sort/sort.h \ -+ ../../../base/parser/../sadf/../../../base/time/time.h \ -+ ../../../base/parser/../sadf/../../../base/time/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/time/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/log/log.h \ -+ ../../../base/parser/../sadf/../../../base/log/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/log/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/sequence/sequence.h \ -+ ../../../base/parser/../sadf/../../../base/sequence/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/matrix/matrix.h \ -+ ../../../base/parser/../sadf/../../../base/matrix/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/maxplus.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/mptype.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../../base/parser/../sadf/../../../base/lookup/clookup.h \ -+ ../../../base/parser/../sadf/sadf_profile.h \ -+ ../../../base/parser/../sadf/sadf_markovchain.h \ -+ ../../../verification/moc/sadf_moc.h \ -+ ../../../verification/moc/../../base/sadf/sadf_graph.h \ -+ ../../../verification/simple/sadf_simple.h \ -+ ../../../verification/simple/../../base/sadf/sadf_graph.h \ -+ ../../../verification/simple/sadf_ergodic.h \ -+ ../../../verification/consistency/sadf_consistency.h \ -+ ../../../verification/consistency/../../base/sadf/sadf_graph.h \ -+ ../../../verification/consistency/../../transformation/scenario/sadf_fix_scenario.h \ -+ ../../../verification/consistency/../../transformation/scenario/../../base/sadf/sadf_graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/sadf2sdf.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../base/sadf/sadf_graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../verification/moc/sadf_moc.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/sdf.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/channel.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/actor.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/port.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/component.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/base.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/channel.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/../untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/timed_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/actor.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/acyclic.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/../untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/components.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/../../../base/base.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/connected.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/cycle.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/dfs.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/repetition_vector.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/hsdf/check.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/analysis.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffer.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/latency.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/minimal.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/selftimed.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/mcm.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/throughput.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/deadlock.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/generate/generate.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/generate/../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/buffer_throughput/buffy.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/dot/dot.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/hapi/hapi.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/html.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/schedule/schedule.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/xml/xml.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/flow.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/autoconc.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/buffersize.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/apg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/apg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/hsdf.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/unfold.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/misc/reverse_channels.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../../analysis/graph/sadf_state_space.h \ -+ ../../../analysis/graph/../schedulers/sadf_asap.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_tps.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_configuration.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/../sadf/sadf_graph.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_channel_status.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_control_status.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_transition.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_kernel_status.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_detector_status.h \ -+ ../../../analysis/process/sadf_inter_firing_latency.h \ -+ ../../../analysis/process/../../verification/simple/sadf_simple.h \ -+ ../../../analysis/process/../../verification/simple/sadf_ergodic.h \ -+ ../../../analysis/process/../schedulers/sadf_asap_reduced.h \ -+ ../../../analysis/process/../schedulers/../../base/tps/sadf_tps.h \ -+ ../../../analysis/process/sadf_response_delay.h \ -+ ../../../analysis/process/sadf_deadline_miss.h \ -+ ../../../analysis/channel/sadf_buffer_occupancy.h \ -+ ../../../analysis/channel/../../verification/simple/sadf_simple.h \ -+ ../../../analysis/channel/../../verification/simple/sadf_ergodic.h \ -+ ../../../analysis/channel/../schedulers/sadf_asap_reduced.h \ -+ ../../../simulation/settings/sadf_settings.h \ -+ ../../../simulation/settings/../../base/sadf/sadf_graph.h \ -+ ../../../print/xml/sadf2xml.h \ -+ ../../../print/xml/../../base/sadf/sadf_graph.h \ -+ ../../../print/dot/sadf2dot.h \ -+ ../../../print/dot/../../base/sadf/sadf_graph.h \ -+ ../../../print/html/sadf2html.h \ -+ ../../../print/html/../../base/sadf/sadf_graph.h \ -+ ../../../print/poosl/sadf2poosl.h \ -+ ../../../print/poosl/sadf2poosl_cluster.h \ -+ ../../../print/poosl/sadf2poosl_process.h \ -+ ../../../print/poosl/sadf2poosl_data.h \ -+ ../../../print/poosl/../../base/sadf/sadf_graph.h \ -+ ../../../print/poosl/../../simulation/settings/sadf_settings.h \ -+ ../../../transformation/timing/sadf_timing.h \ -+ ../../../transformation/timing/../../base/sadf/sadf_graph.h \ -+ ../../../transformation/scenario/sadf_fix_scenario.h \ -+ ../../../transformation/sdf/sadf2sdf.h \ -+ ../../../transformation/sdf/sdf2sadf.h \ -+ ../../../transformation/sdf/../../../sdf/sdf.h \ -+ ../../../transformation/sdf/../../base/sadf/sadf_graph.h \ -+ ../../../transformation/csdf/sadf2csdf.h \ -+ ../../../transformation/csdf/../../base/sadf/sadf_graph.h \ -+ ../../../transformation/csdf/../../verification/moc/sadf_moc.h \ -+ ../../../transformation/csdf/../../../csdf/csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/rate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/actor.h \ -+ ../../../transformation/csdf/../../../csdf/base/algo/components.h \ -+ ../../../transformation/csdf/../../../csdf/base/algo/../../csdf.h \ -+ ../../../transformation/csdf/../../../csdf/base/algo/dfs.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/analysis.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/buffersizing/buffersizing.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/sdf.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/throughput/throughput.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/throughput/selftimed_throughput.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../../transformation/csdf/../../../csdf/generate/generate.h \ -+ ../../../transformation/csdf/../../../csdf/generate/../csdf.h \ -+ ../../../transformation/csdf/../../../csdf/output/buffer_throughput/buffy.h \ -+ ../../../transformation/csdf/../../../csdf/output/buffer_throughput/../../csdf.h \ -+ ../../../transformation/csdf/../../../csdf/output/xml/xml.h \ -+ ../../../transformation/csdf/../../../csdf/output/xml/../../csdf.h \ -+ ../../../transformation/csdf/../../../csdf/transform/to_sdf/sdftocsdf.h \ -+ ../../../transformation/csdf/../../../csdf/transform/to_sdf/../../csdf.h \ -+ ../../../transformation/csdf/csdf2sadf.h \ -+ ../../../transformation/fsmsadf/sadf2fsmsadf.h \ -+ ../../../transformation/fsmsadf/../../base/sadf/sadf_graph.h \ -+ ../../../transformation/fsmsadf/../scenario/sadf_collection.h \ -+ ../../../transformation/fsmsadf/../scenario/sadf_fix_scenario.h \ -+ ../../../transformation/fsmsadf/../scenario/../../verification/moc/sadf_moc.h \ -+ ../../../transformation/fsmsadf/../scenario/../sdf/sadf2sdf.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/fsmsadf.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/actor.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/port.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/type.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/component.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/../../base/base.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/memorytype.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/scenario.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/channel.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/actor.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/../../sdf/sdf.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/channel.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/fsm.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/port.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/analysis.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/throughput.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/scenariograph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/fsm_ref_schedule.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/fsm_scenario_transitions.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/statespace.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/../../base/fsm.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/maxplusautomaton.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/mpexplore.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/repetition_vector.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/../../../base/base.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/generate/generate.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/generate/../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/memory.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/binding.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/graph_binding.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/virtual_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/virtual_platform/base/../../base_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/compsoc_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/compsoc_platform/base/../../base_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/mamps_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/mamps_platform/base/../../base_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/transform.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/worst-case/worst-case.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/worst-case/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/auto-concurrency/auto-concurrency.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/auto-concurrency/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/output/html/html.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/output/html/../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../../../transformation/scenario/sadf_collection.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_tools_sdf3convert_sadf2fsmsadf_sdf3convert.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_tools_sdf3convert_sadf2fsmsadf_sdf3convert.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_tools_sdf3convert_sadf2fsmsadf_sdf3convert.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_tools_sdf3convert_sadf2fsmsadf_sdf3convert.d 2022-01-07 15:17:07.659254894 +0800 -@@ -0,0 +1,387 @@ -+sadf_tools_sdf3convert_sadf2fsmsadf_sdf3convert.o: sdf3convert.cc sdf3convert.h ../../../sadf.h \ -+ ../../../base/parser/sadf_parser.h \ -+ ../../../base/parser/../sadf/sadf_graph.h \ -+ ../../../base/parser/../sadf/sadf_process.h \ -+ ../../../base/parser/../sadf/sadf_channel.h \ -+ ../../../base/parser/../sadf/sadf_component.h \ -+ ../../../base/parser/../sadf/sadf_defines.h \ -+ ../../../base/parser/../sadf/../../../base/base.h \ -+ ../../../base/parser/../sadf/../../../base/exception/exception.h \ -+ ../../../base/parser/../sadf/../../../base/exception/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/exception/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/fraction/fraction.h \ -+ ../../../base/parser/../sadf/../../../base/fraction/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/fraction/../math/cmath.h \ -+ ../../../base/parser/../sadf/../../../base/fraction/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/xml/xml.h \ -+ ../../../base/parser/../sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/parser/../sadf/../../../base/tempfile/tempfile.h \ -+ ../../../base/parser/../sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/math/cmath.h \ -+ ../../../base/parser/../sadf/../../../base/random/random.h \ -+ ../../../base/parser/../sadf/../../../base/sort/sort.h \ -+ ../../../base/parser/../sadf/../../../base/time/time.h \ -+ ../../../base/parser/../sadf/../../../base/time/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/time/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/log/log.h \ -+ ../../../base/parser/../sadf/../../../base/log/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/log/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/sequence/sequence.h \ -+ ../../../base/parser/../sadf/../../../base/sequence/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/matrix/matrix.h \ -+ ../../../base/parser/../sadf/../../../base/matrix/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/maxplus.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/mptype.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../../base/parser/../sadf/../../../base/lookup/clookup.h \ -+ ../../../base/parser/../sadf/sadf_profile.h \ -+ ../../../base/parser/../sadf/sadf_markovchain.h \ -+ ../../../verification/moc/sadf_moc.h \ -+ ../../../verification/moc/../../base/sadf/sadf_graph.h \ -+ ../../../verification/simple/sadf_simple.h \ -+ ../../../verification/simple/../../base/sadf/sadf_graph.h \ -+ ../../../verification/simple/sadf_ergodic.h \ -+ ../../../verification/consistency/sadf_consistency.h \ -+ ../../../verification/consistency/../../base/sadf/sadf_graph.h \ -+ ../../../verification/consistency/../../transformation/scenario/sadf_fix_scenario.h \ -+ ../../../verification/consistency/../../transformation/scenario/../../base/sadf/sadf_graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/sadf2sdf.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../base/sadf/sadf_graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../verification/moc/sadf_moc.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/sdf.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/channel.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/actor.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/port.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/component.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/base.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/channel.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/../untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/timed_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/actor.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/acyclic.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/../untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/components.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/../../../base/base.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/connected.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/cycle.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/dfs.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/repetition_vector.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/hsdf/check.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/analysis.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffer.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/latency.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/minimal.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/selftimed.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/mcm.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/throughput.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/deadlock.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/generate/generate.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/generate/../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/buffer_throughput/buffy.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/dot/dot.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/hapi/hapi.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/html.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/schedule/schedule.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/xml/xml.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/flow.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/autoconc.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/buffersize.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/apg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/apg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/hsdf.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/unfold.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/misc/reverse_channels.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../../analysis/graph/sadf_state_space.h \ -+ ../../../analysis/graph/../schedulers/sadf_asap.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_tps.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_configuration.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/../sadf/sadf_graph.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_channel_status.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_control_status.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_transition.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_kernel_status.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_detector_status.h \ -+ ../../../analysis/process/sadf_inter_firing_latency.h \ -+ ../../../analysis/process/../../verification/simple/sadf_simple.h \ -+ ../../../analysis/process/../../verification/simple/sadf_ergodic.h \ -+ ../../../analysis/process/../schedulers/sadf_asap_reduced.h \ -+ ../../../analysis/process/../schedulers/../../base/tps/sadf_tps.h \ -+ ../../../analysis/process/sadf_response_delay.h \ -+ ../../../analysis/process/sadf_deadline_miss.h \ -+ ../../../analysis/channel/sadf_buffer_occupancy.h \ -+ ../../../analysis/channel/../../verification/simple/sadf_simple.h \ -+ ../../../analysis/channel/../../verification/simple/sadf_ergodic.h \ -+ ../../../analysis/channel/../schedulers/sadf_asap_reduced.h \ -+ ../../../simulation/settings/sadf_settings.h \ -+ ../../../simulation/settings/../../base/sadf/sadf_graph.h \ -+ ../../../print/xml/sadf2xml.h \ -+ ../../../print/xml/../../base/sadf/sadf_graph.h \ -+ ../../../print/dot/sadf2dot.h \ -+ ../../../print/dot/../../base/sadf/sadf_graph.h \ -+ ../../../print/html/sadf2html.h \ -+ ../../../print/html/../../base/sadf/sadf_graph.h \ -+ ../../../print/poosl/sadf2poosl.h \ -+ ../../../print/poosl/sadf2poosl_cluster.h \ -+ ../../../print/poosl/sadf2poosl_process.h \ -+ ../../../print/poosl/sadf2poosl_data.h \ -+ ../../../print/poosl/../../base/sadf/sadf_graph.h \ -+ ../../../print/poosl/../../simulation/settings/sadf_settings.h \ -+ ../../../transformation/timing/sadf_timing.h \ -+ ../../../transformation/timing/../../base/sadf/sadf_graph.h \ -+ ../../../transformation/scenario/sadf_fix_scenario.h \ -+ ../../../transformation/sdf/sadf2sdf.h \ -+ ../../../transformation/sdf/sdf2sadf.h \ -+ ../../../transformation/sdf/../../../sdf/sdf.h \ -+ ../../../transformation/sdf/../../base/sadf/sadf_graph.h \ -+ ../../../transformation/csdf/sadf2csdf.h \ -+ ../../../transformation/csdf/../../base/sadf/sadf_graph.h \ -+ ../../../transformation/csdf/../../verification/moc/sadf_moc.h \ -+ ../../../transformation/csdf/../../../csdf/csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/rate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/actor.h \ -+ ../../../transformation/csdf/../../../csdf/base/algo/components.h \ -+ ../../../transformation/csdf/../../../csdf/base/algo/../../csdf.h \ -+ ../../../transformation/csdf/../../../csdf/base/algo/dfs.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/analysis.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/buffersizing/buffersizing.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/sdf.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/throughput/throughput.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/throughput/selftimed_throughput.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../../transformation/csdf/../../../csdf/generate/generate.h \ -+ ../../../transformation/csdf/../../../csdf/generate/../csdf.h \ -+ ../../../transformation/csdf/../../../csdf/output/buffer_throughput/buffy.h \ -+ ../../../transformation/csdf/../../../csdf/output/buffer_throughput/../../csdf.h \ -+ ../../../transformation/csdf/../../../csdf/output/xml/xml.h \ -+ ../../../transformation/csdf/../../../csdf/output/xml/../../csdf.h \ -+ ../../../transformation/csdf/../../../csdf/transform/to_sdf/sdftocsdf.h \ -+ ../../../transformation/csdf/../../../csdf/transform/to_sdf/../../csdf.h \ -+ ../../../transformation/csdf/csdf2sadf.h \ -+ ../../../transformation/fsmsadf/sadf2fsmsadf.h \ -+ ../../../transformation/fsmsadf/../../base/sadf/sadf_graph.h \ -+ ../../../transformation/fsmsadf/../scenario/sadf_collection.h \ -+ ../../../transformation/fsmsadf/../scenario/sadf_fix_scenario.h \ -+ ../../../transformation/fsmsadf/../scenario/../../verification/moc/sadf_moc.h \ -+ ../../../transformation/fsmsadf/../scenario/../sdf/sadf2sdf.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/fsmsadf.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/actor.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/port.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/type.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/component.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/../../base/base.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/memorytype.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/scenario.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/channel.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/actor.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/../../sdf/sdf.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/channel.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/fsm.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/port.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/analysis.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/throughput.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/scenariograph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/fsm_ref_schedule.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/fsm_scenario_transitions.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/statespace.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/../../base/fsm.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/maxplusautomaton.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/mpexplore.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/repetition_vector.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/../../../base/base.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/generate/generate.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/generate/../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/memory.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/binding.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/graph_binding.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/virtual_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/virtual_platform/base/../../base_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/compsoc_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/compsoc_platform/base/../../base_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/mamps_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/mamps_platform/base/../../base_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/transform.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/worst-case/worst-case.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/worst-case/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/auto-concurrency/auto-concurrency.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/auto-concurrency/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/output/html/html.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/output/html/../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../../../transformation/scenario/sadf_collection.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_tools_sdf3convert_sadf2sdf_sdf3convert.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_tools_sdf3convert_sadf2sdf_sdf3convert.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_tools_sdf3convert_sadf2sdf_sdf3convert.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_tools_sdf3convert_sadf2sdf_sdf3convert.d 2022-01-07 15:17:02.245882890 +0800 -@@ -0,0 +1,387 @@ -+sadf_tools_sdf3convert_sadf2sdf_sdf3convert.o: sdf3convert.cc sdf3convert.h ../../../sadf.h \ -+ ../../../base/parser/sadf_parser.h \ -+ ../../../base/parser/../sadf/sadf_graph.h \ -+ ../../../base/parser/../sadf/sadf_process.h \ -+ ../../../base/parser/../sadf/sadf_channel.h \ -+ ../../../base/parser/../sadf/sadf_component.h \ -+ ../../../base/parser/../sadf/sadf_defines.h \ -+ ../../../base/parser/../sadf/../../../base/base.h \ -+ ../../../base/parser/../sadf/../../../base/exception/exception.h \ -+ ../../../base/parser/../sadf/../../../base/exception/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/exception/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/fraction/fraction.h \ -+ ../../../base/parser/../sadf/../../../base/fraction/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/fraction/../math/cmath.h \ -+ ../../../base/parser/../sadf/../../../base/fraction/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/xml/xml.h \ -+ ../../../base/parser/../sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/parser/../sadf/../../../base/tempfile/tempfile.h \ -+ ../../../base/parser/../sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/math/cmath.h \ -+ ../../../base/parser/../sadf/../../../base/random/random.h \ -+ ../../../base/parser/../sadf/../../../base/sort/sort.h \ -+ ../../../base/parser/../sadf/../../../base/time/time.h \ -+ ../../../base/parser/../sadf/../../../base/time/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/time/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/log/log.h \ -+ ../../../base/parser/../sadf/../../../base/log/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/log/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/sequence/sequence.h \ -+ ../../../base/parser/../sadf/../../../base/sequence/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/matrix/matrix.h \ -+ ../../../base/parser/../sadf/../../../base/matrix/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/maxplus.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/mptype.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../../base/parser/../sadf/../../../base/lookup/clookup.h \ -+ ../../../base/parser/../sadf/sadf_profile.h \ -+ ../../../base/parser/../sadf/sadf_markovchain.h \ -+ ../../../verification/moc/sadf_moc.h \ -+ ../../../verification/moc/../../base/sadf/sadf_graph.h \ -+ ../../../verification/simple/sadf_simple.h \ -+ ../../../verification/simple/../../base/sadf/sadf_graph.h \ -+ ../../../verification/simple/sadf_ergodic.h \ -+ ../../../verification/consistency/sadf_consistency.h \ -+ ../../../verification/consistency/../../base/sadf/sadf_graph.h \ -+ ../../../verification/consistency/../../transformation/scenario/sadf_fix_scenario.h \ -+ ../../../verification/consistency/../../transformation/scenario/../../base/sadf/sadf_graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/sadf2sdf.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../base/sadf/sadf_graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../verification/moc/sadf_moc.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/sdf.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/channel.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/actor.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/port.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/component.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/base.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/channel.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/../untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/timed_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/actor.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/acyclic.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/../untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/components.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/../../../base/base.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/connected.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/cycle.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/dfs.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/repetition_vector.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/hsdf/check.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/analysis.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffer.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/latency.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/minimal.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/selftimed.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/mcm.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/throughput.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/deadlock.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/generate/generate.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/generate/../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/buffer_throughput/buffy.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/dot/dot.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/hapi/hapi.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/html.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/schedule/schedule.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/xml/xml.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/flow.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/autoconc.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/buffersize.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/apg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/apg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/hsdf.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/unfold.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/misc/reverse_channels.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../../analysis/graph/sadf_state_space.h \ -+ ../../../analysis/graph/../schedulers/sadf_asap.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_tps.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_configuration.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/../sadf/sadf_graph.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_channel_status.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_control_status.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_transition.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_kernel_status.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_detector_status.h \ -+ ../../../analysis/process/sadf_inter_firing_latency.h \ -+ ../../../analysis/process/../../verification/simple/sadf_simple.h \ -+ ../../../analysis/process/../../verification/simple/sadf_ergodic.h \ -+ ../../../analysis/process/../schedulers/sadf_asap_reduced.h \ -+ ../../../analysis/process/../schedulers/../../base/tps/sadf_tps.h \ -+ ../../../analysis/process/sadf_response_delay.h \ -+ ../../../analysis/process/sadf_deadline_miss.h \ -+ ../../../analysis/channel/sadf_buffer_occupancy.h \ -+ ../../../analysis/channel/../../verification/simple/sadf_simple.h \ -+ ../../../analysis/channel/../../verification/simple/sadf_ergodic.h \ -+ ../../../analysis/channel/../schedulers/sadf_asap_reduced.h \ -+ ../../../simulation/settings/sadf_settings.h \ -+ ../../../simulation/settings/../../base/sadf/sadf_graph.h \ -+ ../../../print/xml/sadf2xml.h \ -+ ../../../print/xml/../../base/sadf/sadf_graph.h \ -+ ../../../print/dot/sadf2dot.h \ -+ ../../../print/dot/../../base/sadf/sadf_graph.h \ -+ ../../../print/html/sadf2html.h \ -+ ../../../print/html/../../base/sadf/sadf_graph.h \ -+ ../../../print/poosl/sadf2poosl.h \ -+ ../../../print/poosl/sadf2poosl_cluster.h \ -+ ../../../print/poosl/sadf2poosl_process.h \ -+ ../../../print/poosl/sadf2poosl_data.h \ -+ ../../../print/poosl/../../base/sadf/sadf_graph.h \ -+ ../../../print/poosl/../../simulation/settings/sadf_settings.h \ -+ ../../../transformation/timing/sadf_timing.h \ -+ ../../../transformation/timing/../../base/sadf/sadf_graph.h \ -+ ../../../transformation/scenario/sadf_fix_scenario.h \ -+ ../../../transformation/sdf/sadf2sdf.h \ -+ ../../../transformation/sdf/sdf2sadf.h \ -+ ../../../transformation/sdf/../../../sdf/sdf.h \ -+ ../../../transformation/sdf/../../base/sadf/sadf_graph.h \ -+ ../../../transformation/csdf/sadf2csdf.h \ -+ ../../../transformation/csdf/../../base/sadf/sadf_graph.h \ -+ ../../../transformation/csdf/../../verification/moc/sadf_moc.h \ -+ ../../../transformation/csdf/../../../csdf/csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/rate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/actor.h \ -+ ../../../transformation/csdf/../../../csdf/base/algo/components.h \ -+ ../../../transformation/csdf/../../../csdf/base/algo/../../csdf.h \ -+ ../../../transformation/csdf/../../../csdf/base/algo/dfs.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/analysis.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/buffersizing/buffersizing.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/sdf.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/throughput/throughput.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/throughput/selftimed_throughput.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../../transformation/csdf/../../../csdf/generate/generate.h \ -+ ../../../transformation/csdf/../../../csdf/generate/../csdf.h \ -+ ../../../transformation/csdf/../../../csdf/output/buffer_throughput/buffy.h \ -+ ../../../transformation/csdf/../../../csdf/output/buffer_throughput/../../csdf.h \ -+ ../../../transformation/csdf/../../../csdf/output/xml/xml.h \ -+ ../../../transformation/csdf/../../../csdf/output/xml/../../csdf.h \ -+ ../../../transformation/csdf/../../../csdf/transform/to_sdf/sdftocsdf.h \ -+ ../../../transformation/csdf/../../../csdf/transform/to_sdf/../../csdf.h \ -+ ../../../transformation/csdf/csdf2sadf.h \ -+ ../../../transformation/fsmsadf/sadf2fsmsadf.h \ -+ ../../../transformation/fsmsadf/../../base/sadf/sadf_graph.h \ -+ ../../../transformation/fsmsadf/../scenario/sadf_collection.h \ -+ ../../../transformation/fsmsadf/../scenario/sadf_fix_scenario.h \ -+ ../../../transformation/fsmsadf/../scenario/../../verification/moc/sadf_moc.h \ -+ ../../../transformation/fsmsadf/../scenario/../sdf/sadf2sdf.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/fsmsadf.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/actor.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/port.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/type.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/component.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/../../base/base.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/memorytype.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/scenario.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/channel.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/actor.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/../../sdf/sdf.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/channel.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/fsm.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/port.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/analysis.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/throughput.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/scenariograph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/fsm_ref_schedule.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/fsm_scenario_transitions.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/statespace.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/../../base/fsm.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/maxplusautomaton.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/mpexplore.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/repetition_vector.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/../../../base/base.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/generate/generate.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/generate/../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/memory.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/binding.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/graph_binding.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/virtual_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/virtual_platform/base/../../base_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/compsoc_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/compsoc_platform/base/../../base_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/mamps_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/mamps_platform/base/../../base_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/transform.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/worst-case/worst-case.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/worst-case/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/auto-concurrency/auto-concurrency.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/auto-concurrency/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/output/html/html.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/output/html/../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../../../transformation/scenario/sadf_collection.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_tools_sdf3convert_sdf2sadf_sdf3convert.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_tools_sdf3convert_sdf2sadf_sdf3convert.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_tools_sdf3convert_sdf2sadf_sdf3convert.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_tools_sdf3convert_sdf2sadf_sdf3convert.d 2022-01-07 15:16:56.825844621 +0800 -@@ -0,0 +1,387 @@ -+sadf_tools_sdf3convert_sdf2sadf_sdf3convert.o: sdf3convert.cc sdf3convert.h ../../../sadf.h \ -+ ../../../base/parser/sadf_parser.h \ -+ ../../../base/parser/../sadf/sadf_graph.h \ -+ ../../../base/parser/../sadf/sadf_process.h \ -+ ../../../base/parser/../sadf/sadf_channel.h \ -+ ../../../base/parser/../sadf/sadf_component.h \ -+ ../../../base/parser/../sadf/sadf_defines.h \ -+ ../../../base/parser/../sadf/../../../base/base.h \ -+ ../../../base/parser/../sadf/../../../base/exception/exception.h \ -+ ../../../base/parser/../sadf/../../../base/exception/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/exception/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/fraction/fraction.h \ -+ ../../../base/parser/../sadf/../../../base/fraction/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/fraction/../math/cmath.h \ -+ ../../../base/parser/../sadf/../../../base/fraction/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/xml/xml.h \ -+ ../../../base/parser/../sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/parser/../sadf/../../../base/tempfile/tempfile.h \ -+ ../../../base/parser/../sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/math/cmath.h \ -+ ../../../base/parser/../sadf/../../../base/random/random.h \ -+ ../../../base/parser/../sadf/../../../base/sort/sort.h \ -+ ../../../base/parser/../sadf/../../../base/time/time.h \ -+ ../../../base/parser/../sadf/../../../base/time/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/time/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/log/log.h \ -+ ../../../base/parser/../sadf/../../../base/log/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/log/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/sequence/sequence.h \ -+ ../../../base/parser/../sadf/../../../base/sequence/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/matrix/matrix.h \ -+ ../../../base/parser/../sadf/../../../base/matrix/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/maxplus.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/mptype.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/../basic_types.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../../base/parser/../sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../../base/parser/../sadf/../../../base/lookup/clookup.h \ -+ ../../../base/parser/../sadf/sadf_profile.h \ -+ ../../../base/parser/../sadf/sadf_markovchain.h \ -+ ../../../verification/moc/sadf_moc.h \ -+ ../../../verification/moc/../../base/sadf/sadf_graph.h \ -+ ../../../verification/simple/sadf_simple.h \ -+ ../../../verification/simple/../../base/sadf/sadf_graph.h \ -+ ../../../verification/simple/sadf_ergodic.h \ -+ ../../../verification/consistency/sadf_consistency.h \ -+ ../../../verification/consistency/../../base/sadf/sadf_graph.h \ -+ ../../../verification/consistency/../../transformation/scenario/sadf_fix_scenario.h \ -+ ../../../verification/consistency/../../transformation/scenario/../../base/sadf/sadf_graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/sadf2sdf.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../base/sadf/sadf_graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../verification/moc/sadf_moc.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/sdf.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/channel.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/actor.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/port.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/component.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/base.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/channel.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/../untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/timed_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/actor.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/acyclic.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/../untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/components.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/../../../base/base.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/connected.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/cycle.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/dfs.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/repetition_vector.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/hsdf/check.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/analysis.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffer.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/latency.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/minimal.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/selftimed.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/mcm.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/throughput.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/deadlock.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/generate/generate.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/generate/../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/buffer_throughput/buffy.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/dot/dot.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/hapi/hapi.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/html.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/schedule/schedule.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/xml/xml.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/flow.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/autoconc.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/buffersize.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/apg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/apg.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/hsdf.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/unfold.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/misc/reverse_channels.h \ -+ ../../../verification/consistency/../../transformation/sdf/../../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../../analysis/graph/sadf_state_space.h \ -+ ../../../analysis/graph/../schedulers/sadf_asap.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_tps.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_configuration.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/../sadf/sadf_graph.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_channel_status.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_control_status.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_transition.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_kernel_status.h \ -+ ../../../analysis/graph/../schedulers/../../base/tps/sadf_detector_status.h \ -+ ../../../analysis/process/sadf_inter_firing_latency.h \ -+ ../../../analysis/process/../../verification/simple/sadf_simple.h \ -+ ../../../analysis/process/../../verification/simple/sadf_ergodic.h \ -+ ../../../analysis/process/../schedulers/sadf_asap_reduced.h \ -+ ../../../analysis/process/../schedulers/../../base/tps/sadf_tps.h \ -+ ../../../analysis/process/sadf_response_delay.h \ -+ ../../../analysis/process/sadf_deadline_miss.h \ -+ ../../../analysis/channel/sadf_buffer_occupancy.h \ -+ ../../../analysis/channel/../../verification/simple/sadf_simple.h \ -+ ../../../analysis/channel/../../verification/simple/sadf_ergodic.h \ -+ ../../../analysis/channel/../schedulers/sadf_asap_reduced.h \ -+ ../../../simulation/settings/sadf_settings.h \ -+ ../../../simulation/settings/../../base/sadf/sadf_graph.h \ -+ ../../../print/xml/sadf2xml.h \ -+ ../../../print/xml/../../base/sadf/sadf_graph.h \ -+ ../../../print/dot/sadf2dot.h \ -+ ../../../print/dot/../../base/sadf/sadf_graph.h \ -+ ../../../print/html/sadf2html.h \ -+ ../../../print/html/../../base/sadf/sadf_graph.h \ -+ ../../../print/poosl/sadf2poosl.h \ -+ ../../../print/poosl/sadf2poosl_cluster.h \ -+ ../../../print/poosl/sadf2poosl_process.h \ -+ ../../../print/poosl/sadf2poosl_data.h \ -+ ../../../print/poosl/../../base/sadf/sadf_graph.h \ -+ ../../../print/poosl/../../simulation/settings/sadf_settings.h \ -+ ../../../transformation/timing/sadf_timing.h \ -+ ../../../transformation/timing/../../base/sadf/sadf_graph.h \ -+ ../../../transformation/scenario/sadf_fix_scenario.h \ -+ ../../../transformation/sdf/sadf2sdf.h \ -+ ../../../transformation/sdf/sdf2sadf.h \ -+ ../../../transformation/sdf/../../../sdf/sdf.h \ -+ ../../../transformation/sdf/../../base/sadf/sadf_graph.h \ -+ ../../../transformation/csdf/sadf2csdf.h \ -+ ../../../transformation/csdf/../../base/sadf/sadf_graph.h \ -+ ../../../transformation/csdf/../../verification/moc/sadf_moc.h \ -+ ../../../transformation/csdf/../../../csdf/csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/rate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/actor.h \ -+ ../../../transformation/csdf/../../../csdf/base/algo/components.h \ -+ ../../../transformation/csdf/../../../csdf/base/algo/../../csdf.h \ -+ ../../../transformation/csdf/../../../csdf/base/algo/dfs.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/analysis.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/buffersizing/buffersizing.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/sdf.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/throughput/throughput.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/throughput/selftimed_throughput.h \ -+ ../../../transformation/csdf/../../../csdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../../transformation/csdf/../../../csdf/generate/generate.h \ -+ ../../../transformation/csdf/../../../csdf/generate/../csdf.h \ -+ ../../../transformation/csdf/../../../csdf/output/buffer_throughput/buffy.h \ -+ ../../../transformation/csdf/../../../csdf/output/buffer_throughput/../../csdf.h \ -+ ../../../transformation/csdf/../../../csdf/output/xml/xml.h \ -+ ../../../transformation/csdf/../../../csdf/output/xml/../../csdf.h \ -+ ../../../transformation/csdf/../../../csdf/transform/to_sdf/sdftocsdf.h \ -+ ../../../transformation/csdf/../../../csdf/transform/to_sdf/../../csdf.h \ -+ ../../../transformation/csdf/csdf2sadf.h \ -+ ../../../transformation/fsmsadf/sadf2fsmsadf.h \ -+ ../../../transformation/fsmsadf/../../base/sadf/sadf_graph.h \ -+ ../../../transformation/fsmsadf/../scenario/sadf_collection.h \ -+ ../../../transformation/fsmsadf/../scenario/sadf_fix_scenario.h \ -+ ../../../transformation/fsmsadf/../scenario/../../verification/moc/sadf_moc.h \ -+ ../../../transformation/fsmsadf/../scenario/../sdf/sadf2sdf.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/fsmsadf.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/actor.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/port.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/type.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/component.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/../../base/base.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/memorytype.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/scenario.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/channel.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/actor.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/../../sdf/sdf.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/channel.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/fsm.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/base/port.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/analysis.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/throughput.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/scenariograph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/fsm_ref_schedule.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/fsm_scenario_transitions.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/statespace.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/../../base/fsm.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/maxplusautomaton.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/mpexplore.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/repetition_vector.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/../../../base/base.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/generate/generate.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/generate/../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/memory.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/binding.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/graph_binding.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/virtual_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/virtual_platform/base/../../base_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/compsoc_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/compsoc_platform/base/../../base_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/mamps_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/mamps_platform/base/../../base_platform/base/flow.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/transform.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/worst-case/worst-case.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/worst-case/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/auto-concurrency/auto-concurrency.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/transform/auto-concurrency/../../base/graph.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/output/html/html.h \ -+ ../../../transformation/fsmsadf/../../../fsmsadf/output/html/../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../../../transformation/scenario/sadf_collection.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_tools_sdf3print_sdf3print.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_tools_sdf3print_sdf3print.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_tools_sdf3print_sdf3print.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_tools_sdf3print_sdf3print.d 2022-01-07 15:17:10.355940991 +0800 -@@ -0,0 +1,382 @@ -+sadf_tools_sdf3print_sdf3print.o: sdf3print.cc sdf3print.h ../../sadf.h \ -+ ../../base/parser/sadf_parser.h ../../base/parser/../sadf/sadf_graph.h \ -+ ../../base/parser/../sadf/sadf_process.h \ -+ ../../base/parser/../sadf/sadf_channel.h \ -+ ../../base/parser/../sadf/sadf_component.h \ -+ ../../base/parser/../sadf/sadf_defines.h \ -+ ../../base/parser/../sadf/../../../base/base.h \ -+ ../../base/parser/../sadf/../../../base/exception/exception.h \ -+ ../../base/parser/../sadf/../../../base/exception/../string/cstring.h \ -+ ../../base/parser/../sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/exception/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/fraction/fraction.h \ -+ ../../base/parser/../sadf/../../../base/fraction/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/fraction/../math/cmath.h \ -+ ../../base/parser/../sadf/../../../base/fraction/../string/cstring.h \ -+ ../../base/parser/../sadf/../../../base/xml/xml.h \ -+ ../../base/parser/../sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/parser/../sadf/../../../base/tempfile/tempfile.h \ -+ ../../base/parser/../sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../base/parser/../sadf/../../../base/math/cmath.h \ -+ ../../base/parser/../sadf/../../../base/random/random.h \ -+ ../../base/parser/../sadf/../../../base/sort/sort.h \ -+ ../../base/parser/../sadf/../../../base/time/time.h \ -+ ../../base/parser/../sadf/../../../base/time/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/time/../string/cstring.h \ -+ ../../base/parser/../sadf/../../../base/log/log.h \ -+ ../../base/parser/../sadf/../../../base/log/../string/cstring.h \ -+ ../../base/parser/../sadf/../../../base/log/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/sequence/sequence.h \ -+ ../../base/parser/../sadf/../../../base/sequence/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/matrix/matrix.h \ -+ ../../base/parser/../sadf/../../../base/matrix/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/maxplus/maxplus.h \ -+ ../../base/parser/../sadf/../../../base/maxplus/mptype.h \ -+ ../../base/parser/../sadf/../../../base/maxplus/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../base/parser/../sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../base/parser/../sadf/../../../base/lookup/clookup.h \ -+ ../../base/parser/../sadf/sadf_profile.h \ -+ ../../base/parser/../sadf/sadf_markovchain.h \ -+ ../../verification/moc/sadf_moc.h \ -+ ../../verification/moc/../../base/sadf/sadf_graph.h \ -+ ../../verification/simple/sadf_simple.h \ -+ ../../verification/simple/../../base/sadf/sadf_graph.h \ -+ ../../verification/simple/sadf_ergodic.h \ -+ ../../verification/consistency/sadf_consistency.h \ -+ ../../verification/consistency/../../base/sadf/sadf_graph.h \ -+ ../../verification/consistency/../../transformation/scenario/sadf_fix_scenario.h \ -+ ../../verification/consistency/../../transformation/scenario/../../base/sadf/sadf_graph.h \ -+ ../../verification/consistency/../../transformation/sdf/sadf2sdf.h \ -+ ../../verification/consistency/../../transformation/sdf/../../base/sadf/sadf_graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../verification/moc/sadf_moc.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/sdf.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/channel.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/actor.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/port.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/component.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/base.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../basic_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/channel.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/../untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/timed_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/actor.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/acyclic.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/../untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/components.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/../../../base/base.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/connected.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/cycle.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/dfs.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/repetition_vector.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/hsdf/check.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/analysis.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffer.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/latency.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/minimal.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/selftimed.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/mcm.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/throughput.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/deadlock.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/generate/generate.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/generate/../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/buffer_throughput/buffy.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/dot/dot.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/hapi/hapi.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/html.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/schedule/schedule.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/xml/xml.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/flow.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/autoconc.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/buffersize.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/apg.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/apg.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/hsdf.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/unfold.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/misc/reverse_channels.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../analysis/graph/sadf_state_space.h \ -+ ../../analysis/graph/../schedulers/sadf_asap.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_tps.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_configuration.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/../sadf/sadf_graph.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_channel_status.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_control_status.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_transition.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_kernel_status.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_detector_status.h \ -+ ../../analysis/process/sadf_inter_firing_latency.h \ -+ ../../analysis/process/../../verification/simple/sadf_simple.h \ -+ ../../analysis/process/../../verification/simple/sadf_ergodic.h \ -+ ../../analysis/process/../schedulers/sadf_asap_reduced.h \ -+ ../../analysis/process/../schedulers/../../base/tps/sadf_tps.h \ -+ ../../analysis/process/sadf_response_delay.h \ -+ ../../analysis/process/sadf_deadline_miss.h \ -+ ../../analysis/channel/sadf_buffer_occupancy.h \ -+ ../../analysis/channel/../../verification/simple/sadf_simple.h \ -+ ../../analysis/channel/../../verification/simple/sadf_ergodic.h \ -+ ../../analysis/channel/../schedulers/sadf_asap_reduced.h \ -+ ../../simulation/settings/sadf_settings.h \ -+ ../../simulation/settings/../../base/sadf/sadf_graph.h \ -+ ../../print/xml/sadf2xml.h ../../print/xml/../../base/sadf/sadf_graph.h \ -+ ../../print/dot/sadf2dot.h ../../print/dot/../../base/sadf/sadf_graph.h \ -+ ../../print/html/sadf2html.h \ -+ ../../print/html/../../base/sadf/sadf_graph.h \ -+ ../../print/poosl/sadf2poosl.h ../../print/poosl/sadf2poosl_cluster.h \ -+ ../../print/poosl/sadf2poosl_process.h \ -+ ../../print/poosl/sadf2poosl_data.h \ -+ ../../print/poosl/../../base/sadf/sadf_graph.h \ -+ ../../print/poosl/../../simulation/settings/sadf_settings.h \ -+ ../../transformation/timing/sadf_timing.h \ -+ ../../transformation/timing/../../base/sadf/sadf_graph.h \ -+ ../../transformation/scenario/sadf_fix_scenario.h \ -+ ../../transformation/sdf/sadf2sdf.h ../../transformation/sdf/sdf2sadf.h \ -+ ../../transformation/sdf/../../../sdf/sdf.h \ -+ ../../transformation/sdf/../../base/sadf/sadf_graph.h \ -+ ../../transformation/csdf/sadf2csdf.h \ -+ ../../transformation/csdf/../../base/sadf/sadf_graph.h \ -+ ../../transformation/csdf/../../verification/moc/sadf_moc.h \ -+ ../../transformation/csdf/../../../csdf/csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/rate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/actor.h \ -+ ../../transformation/csdf/../../../csdf/base/algo/components.h \ -+ ../../transformation/csdf/../../../csdf/base/algo/../../csdf.h \ -+ ../../transformation/csdf/../../../csdf/base/algo/dfs.h \ -+ ../../transformation/csdf/../../../csdf/analysis/analysis.h \ -+ ../../transformation/csdf/../../../csdf/analysis/buffersizing/buffersizing.h \ -+ ../../transformation/csdf/../../../csdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/sdf.h \ -+ ../../transformation/csdf/../../../csdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../transformation/csdf/../../../csdf/analysis/throughput/throughput.h \ -+ ../../transformation/csdf/../../../csdf/analysis/throughput/selftimed_throughput.h \ -+ ../../transformation/csdf/../../../csdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../transformation/csdf/../../../csdf/generate/generate.h \ -+ ../../transformation/csdf/../../../csdf/generate/../csdf.h \ -+ ../../transformation/csdf/../../../csdf/output/buffer_throughput/buffy.h \ -+ ../../transformation/csdf/../../../csdf/output/buffer_throughput/../../csdf.h \ -+ ../../transformation/csdf/../../../csdf/output/xml/xml.h \ -+ ../../transformation/csdf/../../../csdf/output/xml/../../csdf.h \ -+ ../../transformation/csdf/../../../csdf/transform/to_sdf/sdftocsdf.h \ -+ ../../transformation/csdf/../../../csdf/transform/to_sdf/../../csdf.h \ -+ ../../transformation/csdf/csdf2sadf.h \ -+ ../../transformation/fsmsadf/sadf2fsmsadf.h \ -+ ../../transformation/fsmsadf/../../base/sadf/sadf_graph.h \ -+ ../../transformation/fsmsadf/../scenario/sadf_collection.h \ -+ ../../transformation/fsmsadf/../scenario/sadf_fix_scenario.h \ -+ ../../transformation/fsmsadf/../scenario/../../verification/moc/sadf_moc.h \ -+ ../../transformation/fsmsadf/../scenario/../sdf/sadf2sdf.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/fsmsadf.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/actor.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/port.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/type.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/component.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/../../base/base.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/memorytype.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/scenario.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/channel.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/actor.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/../../sdf/sdf.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/channel.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/fsm.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/port.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/analysis.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/throughput.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/scenariograph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/fsm_ref_schedule.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/fsm_scenario_transitions.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/statespace.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/../../base/fsm.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/maxplusautomaton.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/mpexplore.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/repetition_vector.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/../../../base/base.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/generate/generate.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/generate/../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/memory.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/binding.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/graph_binding.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/virtual_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/virtual_platform/base/../../base_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/compsoc_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/compsoc_platform/base/../../base_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/mamps_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/mamps_platform/base/../../base_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/transform/transform.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/transform/worst-case/worst-case.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/transform/worst-case/../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/transform/auto-concurrency/auto-concurrency.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/transform/auto-concurrency/../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/output/html/html.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/output/html/../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../../transformation/scenario/sadf_collection.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_tools_sdf3transform_sdf3transform.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_tools_sdf3transform_sdf3transform.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_tools_sdf3transform_sdf3transform.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_tools_sdf3transform_sdf3transform.d 2022-01-07 15:17:13.142627851 +0800 -@@ -0,0 +1,382 @@ -+sadf_tools_sdf3transform_sdf3transform.o: sdf3transform.cc sdf3transform.h ../../sadf.h \ -+ ../../base/parser/sadf_parser.h ../../base/parser/../sadf/sadf_graph.h \ -+ ../../base/parser/../sadf/sadf_process.h \ -+ ../../base/parser/../sadf/sadf_channel.h \ -+ ../../base/parser/../sadf/sadf_component.h \ -+ ../../base/parser/../sadf/sadf_defines.h \ -+ ../../base/parser/../sadf/../../../base/base.h \ -+ ../../base/parser/../sadf/../../../base/exception/exception.h \ -+ ../../base/parser/../sadf/../../../base/exception/../string/cstring.h \ -+ ../../base/parser/../sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/exception/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/fraction/fraction.h \ -+ ../../base/parser/../sadf/../../../base/fraction/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/fraction/../math/cmath.h \ -+ ../../base/parser/../sadf/../../../base/fraction/../string/cstring.h \ -+ ../../base/parser/../sadf/../../../base/xml/xml.h \ -+ ../../base/parser/../sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/parser/../sadf/../../../base/tempfile/tempfile.h \ -+ ../../base/parser/../sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../base/parser/../sadf/../../../base/math/cmath.h \ -+ ../../base/parser/../sadf/../../../base/random/random.h \ -+ ../../base/parser/../sadf/../../../base/sort/sort.h \ -+ ../../base/parser/../sadf/../../../base/time/time.h \ -+ ../../base/parser/../sadf/../../../base/time/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/time/../string/cstring.h \ -+ ../../base/parser/../sadf/../../../base/log/log.h \ -+ ../../base/parser/../sadf/../../../base/log/../string/cstring.h \ -+ ../../base/parser/../sadf/../../../base/log/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/sequence/sequence.h \ -+ ../../base/parser/../sadf/../../../base/sequence/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/matrix/matrix.h \ -+ ../../base/parser/../sadf/../../../base/matrix/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/maxplus/maxplus.h \ -+ ../../base/parser/../sadf/../../../base/maxplus/mptype.h \ -+ ../../base/parser/../sadf/../../../base/maxplus/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../base/parser/../sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../base/parser/../sadf/../../../base/lookup/clookup.h \ -+ ../../base/parser/../sadf/sadf_profile.h \ -+ ../../base/parser/../sadf/sadf_markovchain.h \ -+ ../../verification/moc/sadf_moc.h \ -+ ../../verification/moc/../../base/sadf/sadf_graph.h \ -+ ../../verification/simple/sadf_simple.h \ -+ ../../verification/simple/../../base/sadf/sadf_graph.h \ -+ ../../verification/simple/sadf_ergodic.h \ -+ ../../verification/consistency/sadf_consistency.h \ -+ ../../verification/consistency/../../base/sadf/sadf_graph.h \ -+ ../../verification/consistency/../../transformation/scenario/sadf_fix_scenario.h \ -+ ../../verification/consistency/../../transformation/scenario/../../base/sadf/sadf_graph.h \ -+ ../../verification/consistency/../../transformation/sdf/sadf2sdf.h \ -+ ../../verification/consistency/../../transformation/sdf/../../base/sadf/sadf_graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../verification/moc/sadf_moc.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/sdf.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/channel.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/actor.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/port.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/component.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/base.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../basic_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/channel.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/../untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/timed_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/actor.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/acyclic.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/../untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/components.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/../../../base/base.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/connected.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/cycle.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/dfs.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/repetition_vector.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/hsdf/check.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/analysis.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffer.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/latency.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/minimal.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/selftimed.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/mcm.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/throughput.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/deadlock.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/generate/generate.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/generate/../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/buffer_throughput/buffy.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/dot/dot.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/hapi/hapi.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/html.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/schedule/schedule.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/xml/xml.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/flow.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/autoconc.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/buffersize.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/apg.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/apg.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/hsdf.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/unfold.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/misc/reverse_channels.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../analysis/graph/sadf_state_space.h \ -+ ../../analysis/graph/../schedulers/sadf_asap.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_tps.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_configuration.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/../sadf/sadf_graph.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_channel_status.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_control_status.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_transition.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_kernel_status.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_detector_status.h \ -+ ../../analysis/process/sadf_inter_firing_latency.h \ -+ ../../analysis/process/../../verification/simple/sadf_simple.h \ -+ ../../analysis/process/../../verification/simple/sadf_ergodic.h \ -+ ../../analysis/process/../schedulers/sadf_asap_reduced.h \ -+ ../../analysis/process/../schedulers/../../base/tps/sadf_tps.h \ -+ ../../analysis/process/sadf_response_delay.h \ -+ ../../analysis/process/sadf_deadline_miss.h \ -+ ../../analysis/channel/sadf_buffer_occupancy.h \ -+ ../../analysis/channel/../../verification/simple/sadf_simple.h \ -+ ../../analysis/channel/../../verification/simple/sadf_ergodic.h \ -+ ../../analysis/channel/../schedulers/sadf_asap_reduced.h \ -+ ../../simulation/settings/sadf_settings.h \ -+ ../../simulation/settings/../../base/sadf/sadf_graph.h \ -+ ../../print/xml/sadf2xml.h ../../print/xml/../../base/sadf/sadf_graph.h \ -+ ../../print/dot/sadf2dot.h ../../print/dot/../../base/sadf/sadf_graph.h \ -+ ../../print/html/sadf2html.h \ -+ ../../print/html/../../base/sadf/sadf_graph.h \ -+ ../../print/poosl/sadf2poosl.h ../../print/poosl/sadf2poosl_cluster.h \ -+ ../../print/poosl/sadf2poosl_process.h \ -+ ../../print/poosl/sadf2poosl_data.h \ -+ ../../print/poosl/../../base/sadf/sadf_graph.h \ -+ ../../print/poosl/../../simulation/settings/sadf_settings.h \ -+ ../../transformation/timing/sadf_timing.h \ -+ ../../transformation/timing/../../base/sadf/sadf_graph.h \ -+ ../../transformation/scenario/sadf_fix_scenario.h \ -+ ../../transformation/sdf/sadf2sdf.h ../../transformation/sdf/sdf2sadf.h \ -+ ../../transformation/sdf/../../../sdf/sdf.h \ -+ ../../transformation/sdf/../../base/sadf/sadf_graph.h \ -+ ../../transformation/csdf/sadf2csdf.h \ -+ ../../transformation/csdf/../../base/sadf/sadf_graph.h \ -+ ../../transformation/csdf/../../verification/moc/sadf_moc.h \ -+ ../../transformation/csdf/../../../csdf/csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/rate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/actor.h \ -+ ../../transformation/csdf/../../../csdf/base/algo/components.h \ -+ ../../transformation/csdf/../../../csdf/base/algo/../../csdf.h \ -+ ../../transformation/csdf/../../../csdf/base/algo/dfs.h \ -+ ../../transformation/csdf/../../../csdf/analysis/analysis.h \ -+ ../../transformation/csdf/../../../csdf/analysis/buffersizing/buffersizing.h \ -+ ../../transformation/csdf/../../../csdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/sdf.h \ -+ ../../transformation/csdf/../../../csdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../transformation/csdf/../../../csdf/analysis/throughput/throughput.h \ -+ ../../transformation/csdf/../../../csdf/analysis/throughput/selftimed_throughput.h \ -+ ../../transformation/csdf/../../../csdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../transformation/csdf/../../../csdf/generate/generate.h \ -+ ../../transformation/csdf/../../../csdf/generate/../csdf.h \ -+ ../../transformation/csdf/../../../csdf/output/buffer_throughput/buffy.h \ -+ ../../transformation/csdf/../../../csdf/output/buffer_throughput/../../csdf.h \ -+ ../../transformation/csdf/../../../csdf/output/xml/xml.h \ -+ ../../transformation/csdf/../../../csdf/output/xml/../../csdf.h \ -+ ../../transformation/csdf/../../../csdf/transform/to_sdf/sdftocsdf.h \ -+ ../../transformation/csdf/../../../csdf/transform/to_sdf/../../csdf.h \ -+ ../../transformation/csdf/csdf2sadf.h \ -+ ../../transformation/fsmsadf/sadf2fsmsadf.h \ -+ ../../transformation/fsmsadf/../../base/sadf/sadf_graph.h \ -+ ../../transformation/fsmsadf/../scenario/sadf_collection.h \ -+ ../../transformation/fsmsadf/../scenario/sadf_fix_scenario.h \ -+ ../../transformation/fsmsadf/../scenario/../../verification/moc/sadf_moc.h \ -+ ../../transformation/fsmsadf/../scenario/../sdf/sadf2sdf.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/fsmsadf.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/actor.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/port.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/type.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/component.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/../../base/base.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/memorytype.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/scenario.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/channel.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/actor.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/../../sdf/sdf.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/channel.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/fsm.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/port.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/analysis.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/throughput.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/scenariograph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/fsm_ref_schedule.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/fsm_scenario_transitions.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/statespace.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/../../base/fsm.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/maxplusautomaton.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/mpexplore.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/repetition_vector.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/../../../base/base.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/generate/generate.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/generate/../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/memory.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/binding.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/graph_binding.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/virtual_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/virtual_platform/base/../../base_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/compsoc_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/compsoc_platform/base/../../base_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/mamps_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/mamps_platform/base/../../base_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/transform/transform.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/transform/worst-case/worst-case.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/transform/worst-case/../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/transform/auto-concurrency/auto-concurrency.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/transform/auto-concurrency/../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/output/html/html.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/output/html/../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../../transformation/scenario/sadf_collection.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_tools_sdf3verify_sdf3verify.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_tools_sdf3verify_sdf3verify.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_tools_sdf3verify_sdf3verify.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_tools_sdf3verify_sdf3verify.d 2022-01-07 15:17:15.985981907 +0800 -@@ -0,0 +1,382 @@ -+sadf_tools_sdf3verify_sdf3verify.o: sdf3verify.cc sdf3verify.h ../../sadf.h \ -+ ../../base/parser/sadf_parser.h ../../base/parser/../sadf/sadf_graph.h \ -+ ../../base/parser/../sadf/sadf_process.h \ -+ ../../base/parser/../sadf/sadf_channel.h \ -+ ../../base/parser/../sadf/sadf_component.h \ -+ ../../base/parser/../sadf/sadf_defines.h \ -+ ../../base/parser/../sadf/../../../base/base.h \ -+ ../../base/parser/../sadf/../../../base/exception/exception.h \ -+ ../../base/parser/../sadf/../../../base/exception/../string/cstring.h \ -+ ../../base/parser/../sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/exception/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/fraction/fraction.h \ -+ ../../base/parser/../sadf/../../../base/fraction/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/fraction/../math/cmath.h \ -+ ../../base/parser/../sadf/../../../base/fraction/../string/cstring.h \ -+ ../../base/parser/../sadf/../../../base/xml/xml.h \ -+ ../../base/parser/../sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/parser/../sadf/../../../base/tempfile/tempfile.h \ -+ ../../base/parser/../sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../base/parser/../sadf/../../../base/math/cmath.h \ -+ ../../base/parser/../sadf/../../../base/random/random.h \ -+ ../../base/parser/../sadf/../../../base/sort/sort.h \ -+ ../../base/parser/../sadf/../../../base/time/time.h \ -+ ../../base/parser/../sadf/../../../base/time/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/time/../string/cstring.h \ -+ ../../base/parser/../sadf/../../../base/log/log.h \ -+ ../../base/parser/../sadf/../../../base/log/../string/cstring.h \ -+ ../../base/parser/../sadf/../../../base/log/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/sequence/sequence.h \ -+ ../../base/parser/../sadf/../../../base/sequence/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/matrix/matrix.h \ -+ ../../base/parser/../sadf/../../../base/matrix/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/maxplus/maxplus.h \ -+ ../../base/parser/../sadf/../../../base/maxplus/mptype.h \ -+ ../../base/parser/../sadf/../../../base/maxplus/../basic_types.h \ -+ ../../base/parser/../sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../base/parser/../sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../base/parser/../sadf/../../../base/lookup/clookup.h \ -+ ../../base/parser/../sadf/sadf_profile.h \ -+ ../../base/parser/../sadf/sadf_markovchain.h \ -+ ../../verification/moc/sadf_moc.h \ -+ ../../verification/moc/../../base/sadf/sadf_graph.h \ -+ ../../verification/simple/sadf_simple.h \ -+ ../../verification/simple/../../base/sadf/sadf_graph.h \ -+ ../../verification/simple/sadf_ergodic.h \ -+ ../../verification/consistency/sadf_consistency.h \ -+ ../../verification/consistency/../../base/sadf/sadf_graph.h \ -+ ../../verification/consistency/../../transformation/scenario/sadf_fix_scenario.h \ -+ ../../verification/consistency/../../transformation/scenario/../../base/sadf/sadf_graph.h \ -+ ../../verification/consistency/../../transformation/sdf/sadf2sdf.h \ -+ ../../verification/consistency/../../transformation/sdf/../../base/sadf/sadf_graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../verification/moc/sadf_moc.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/sdf.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/channel.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/actor.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/port.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/component.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/base.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../basic_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/channel.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/../untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/timed_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/timed/actor.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/acyclic.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/../untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/components.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/../../../base/base.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/connected.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/cycle.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/dfs.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/algo/repetition_vector.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/hsdf/check.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/analysis.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffer.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/latency.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/minimal.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/selftimed.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/mcm.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/throughput.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/deadlock.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/generate/generate.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/generate/../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/buffer_throughput/buffy.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/dot/dot.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/hapi/hapi.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/html.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/schedule/schedule.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/xml/xml.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/flow.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/autoconc.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/buffersize.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/apg.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/to_apg/apg.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/hsdf.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/hsdf/unfold.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/misc/reverse_channels.h \ -+ ../../verification/consistency/../../transformation/sdf/../../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../analysis/graph/sadf_state_space.h \ -+ ../../analysis/graph/../schedulers/sadf_asap.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_tps.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_configuration.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/../sadf/sadf_graph.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_channel_status.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_control_status.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_transition.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_kernel_status.h \ -+ ../../analysis/graph/../schedulers/../../base/tps/sadf_detector_status.h \ -+ ../../analysis/process/sadf_inter_firing_latency.h \ -+ ../../analysis/process/../../verification/simple/sadf_simple.h \ -+ ../../analysis/process/../../verification/simple/sadf_ergodic.h \ -+ ../../analysis/process/../schedulers/sadf_asap_reduced.h \ -+ ../../analysis/process/../schedulers/../../base/tps/sadf_tps.h \ -+ ../../analysis/process/sadf_response_delay.h \ -+ ../../analysis/process/sadf_deadline_miss.h \ -+ ../../analysis/channel/sadf_buffer_occupancy.h \ -+ ../../analysis/channel/../../verification/simple/sadf_simple.h \ -+ ../../analysis/channel/../../verification/simple/sadf_ergodic.h \ -+ ../../analysis/channel/../schedulers/sadf_asap_reduced.h \ -+ ../../simulation/settings/sadf_settings.h \ -+ ../../simulation/settings/../../base/sadf/sadf_graph.h \ -+ ../../print/xml/sadf2xml.h ../../print/xml/../../base/sadf/sadf_graph.h \ -+ ../../print/dot/sadf2dot.h ../../print/dot/../../base/sadf/sadf_graph.h \ -+ ../../print/html/sadf2html.h \ -+ ../../print/html/../../base/sadf/sadf_graph.h \ -+ ../../print/poosl/sadf2poosl.h ../../print/poosl/sadf2poosl_cluster.h \ -+ ../../print/poosl/sadf2poosl_process.h \ -+ ../../print/poosl/sadf2poosl_data.h \ -+ ../../print/poosl/../../base/sadf/sadf_graph.h \ -+ ../../print/poosl/../../simulation/settings/sadf_settings.h \ -+ ../../transformation/timing/sadf_timing.h \ -+ ../../transformation/timing/../../base/sadf/sadf_graph.h \ -+ ../../transformation/scenario/sadf_fix_scenario.h \ -+ ../../transformation/sdf/sadf2sdf.h ../../transformation/sdf/sdf2sadf.h \ -+ ../../transformation/sdf/../../../sdf/sdf.h \ -+ ../../transformation/sdf/../../base/sadf/sadf_graph.h \ -+ ../../transformation/csdf/sadf2csdf.h \ -+ ../../transformation/csdf/../../base/sadf/sadf_graph.h \ -+ ../../transformation/csdf/../../verification/moc/sadf_moc.h \ -+ ../../transformation/csdf/../../../csdf/csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/rate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/actor.h \ -+ ../../transformation/csdf/../../../csdf/base/algo/components.h \ -+ ../../transformation/csdf/../../../csdf/base/algo/../../csdf.h \ -+ ../../transformation/csdf/../../../csdf/base/algo/dfs.h \ -+ ../../transformation/csdf/../../../csdf/analysis/analysis.h \ -+ ../../transformation/csdf/../../../csdf/analysis/buffersizing/buffersizing.h \ -+ ../../transformation/csdf/../../../csdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/sdf.h \ -+ ../../transformation/csdf/../../../csdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../transformation/csdf/../../../csdf/analysis/throughput/throughput.h \ -+ ../../transformation/csdf/../../../csdf/analysis/throughput/selftimed_throughput.h \ -+ ../../transformation/csdf/../../../csdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../transformation/csdf/../../../csdf/generate/generate.h \ -+ ../../transformation/csdf/../../../csdf/generate/../csdf.h \ -+ ../../transformation/csdf/../../../csdf/output/buffer_throughput/buffy.h \ -+ ../../transformation/csdf/../../../csdf/output/buffer_throughput/../../csdf.h \ -+ ../../transformation/csdf/../../../csdf/output/xml/xml.h \ -+ ../../transformation/csdf/../../../csdf/output/xml/../../csdf.h \ -+ ../../transformation/csdf/../../../csdf/transform/to_sdf/sdftocsdf.h \ -+ ../../transformation/csdf/../../../csdf/transform/to_sdf/../../csdf.h \ -+ ../../transformation/csdf/csdf2sadf.h \ -+ ../../transformation/fsmsadf/sadf2fsmsadf.h \ -+ ../../transformation/fsmsadf/../../base/sadf/sadf_graph.h \ -+ ../../transformation/fsmsadf/../scenario/sadf_collection.h \ -+ ../../transformation/fsmsadf/../scenario/sadf_fix_scenario.h \ -+ ../../transformation/fsmsadf/../scenario/../../verification/moc/sadf_moc.h \ -+ ../../transformation/fsmsadf/../scenario/../sdf/sadf2sdf.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/fsmsadf.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/actor.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/port.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/type.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/component.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/../../base/base.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/memorytype.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/scenario.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/channel.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/actor.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/../../sdf/sdf.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/channel.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/fsm.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/base/port.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/analysis.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/throughput.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/scenariograph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/fsm_ref_schedule.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/fsm_scenario_transitions.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/statespace.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/../../base/fsm.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/throughput/maxplusautomaton.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/mpexplore.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/repetition_vector.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/../../../base/base.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../base/../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/generate/generate.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/generate/../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/memory.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/binding.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/graph_binding.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/virtual_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/virtual_platform/base/../../base_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/compsoc_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/compsoc_platform/base/../../base_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/mamps_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/resource_allocation/flow/mamps_platform/base/../../base_platform/base/flow.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/transform/transform.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/transform/worst-case/worst-case.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/transform/worst-case/../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/transform/auto-concurrency/auto-concurrency.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/transform/auto-concurrency/../../base/graph.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/output/html/html.h \ -+ ../../transformation/fsmsadf/../../../fsmsadf/output/html/../../resource_allocation/flow/base_platform/base/flow.h \ -+ ../../transformation/scenario/sadf_collection.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_transformation_csdf_csdf2sadf.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_transformation_csdf_csdf2sadf.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_transformation_csdf_csdf2sadf.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_transformation_csdf_csdf2sadf.d 2022-01-07 15:16:33.225683366 +0800 -@@ -0,0 +1,240 @@ -+sadf_transformation_csdf_csdf2sadf.o: csdf2sadf.cc csdf2sadf.h ../../../csdf/csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/rate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/actor.h \ -+ ../../../csdf/base/algo/components.h \ -+ ../../../csdf/base/algo/../../csdf.h ../../../csdf/base/algo/dfs.h \ -+ ../../../csdf/analysis/analysis.h \ -+ ../../../csdf/analysis/buffersizing/buffersizing.h \ -+ ../../../csdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/sdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/acyclic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/connected.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/cycle.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/dfs.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/check.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffersizing.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/bounded_buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/dependency_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/latency.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed_minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/single_processor_random_staticorder.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcmgraph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/selftimed_throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/tdma_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/deadlock.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/comm_trace.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/mpexplore.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/generate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/buffy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/dot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/hapi.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/html.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/flow.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/scheduling.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/autoconc.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/buffersize.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/sdftoapg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/hsdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/unfold.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/reverse_channels.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/../../base/timed/graph.h \ -+ ../../../csdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../csdf/analysis/throughput/throughput.h \ -+ ../../../csdf/analysis/throughput/selftimed_throughput.h \ -+ ../../../csdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../../csdf/generate/generate.h ../../../csdf/generate/../csdf.h \ -+ ../../../csdf/output/buffer_throughput/buffy.h \ -+ ../../../csdf/output/buffer_throughput/../../csdf.h \ -+ ../../../csdf/output/xml/xml.h ../../../csdf/output/xml/../../csdf.h \ -+ ../../../csdf/transform/to_sdf/sdftocsdf.h \ -+ ../../../csdf/transform/to_sdf/../../csdf.h ../../base/sadf/sadf_graph.h \ -+ ../../base/sadf/sadf_process.h ../../base/sadf/sadf_channel.h \ -+ ../../base/sadf/sadf_component.h ../../base/sadf/sadf_defines.h \ -+ ../../base/sadf/../../../base/base.h ../../base/sadf/sadf_profile.h \ -+ ../../base/sadf/sadf_markovchain.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_transformation_csdf_sadf2csdf.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_transformation_csdf_sadf2csdf.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_transformation_csdf_sadf2csdf.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_transformation_csdf_sadf2csdf.d 2022-01-07 15:16:35.189029775 +0800 -@@ -0,0 +1,242 @@ -+sadf_transformation_csdf_sadf2csdf.o: sadf2csdf.cc sadf2csdf.h ../../base/sadf/sadf_graph.h \ -+ ../../base/sadf/sadf_process.h ../../base/sadf/sadf_channel.h \ -+ ../../base/sadf/sadf_component.h ../../base/sadf/sadf_defines.h \ -+ ../../base/sadf/../../../base/base.h \ -+ ../../base/sadf/../../../base/exception/exception.h \ -+ ../../base/sadf/../../../base/exception/../string/cstring.h \ -+ ../../base/sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../base/sadf/../../../base/exception/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/fraction.h \ -+ ../../base/sadf/../../../base/fraction/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/../math/cmath.h \ -+ ../../base/sadf/../../../base/fraction/../string/cstring.h \ -+ ../../base/sadf/../../../base/xml/xml.h \ -+ ../../base/sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/sadf/../../../base/tempfile/tempfile.h \ -+ ../../base/sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../base/sadf/../../../base/math/cmath.h \ -+ ../../base/sadf/../../../base/random/random.h \ -+ ../../base/sadf/../../../base/sort/sort.h \ -+ ../../base/sadf/../../../base/time/time.h \ -+ ../../base/sadf/../../../base/time/../basic_types.h \ -+ ../../base/sadf/../../../base/time/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/log.h \ -+ ../../base/sadf/../../../base/log/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/../basic_types.h \ -+ ../../base/sadf/../../../base/sequence/sequence.h \ -+ ../../base/sadf/../../../base/sequence/../basic_types.h \ -+ ../../base/sadf/../../../base/matrix/matrix.h \ -+ ../../base/sadf/../../../base/matrix/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/maxplus.h \ -+ ../../base/sadf/../../../base/maxplus/mptype.h \ -+ ../../base/sadf/../../../base/maxplus/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../base/sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../base/sadf/../../../base/lookup/clookup.h \ -+ ../../base/sadf/sadf_profile.h ../../base/sadf/sadf_markovchain.h \ -+ ../../verification/moc/sadf_moc.h \ -+ ../../verification/moc/../../base/sadf/sadf_graph.h ../../../csdf/csdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/untimed/rate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/csdf/base/timed/actor.h \ -+ ../../../csdf/base/algo/components.h \ -+ ../../../csdf/base/algo/../../csdf.h ../../../csdf/base/algo/dfs.h \ -+ ../../../csdf/analysis/analysis.h \ -+ ../../../csdf/analysis/buffersizing/buffersizing.h \ -+ ../../../csdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/sdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/port.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/untimed/../../../base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/channel.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/timed_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/timed/actor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/acyclic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/connected.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/cycle.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/dfs.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/check.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/hsdf/../untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffersizing.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/bounded_buffer.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/dependency_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/latency.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/components.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/selftimed_minimal.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/latency/single_processor_random_staticorder.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/mcm/mcmgraph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/selftimed_throughput.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/tdma_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/deadlock.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/comm_trace.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/mpexplore.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/generate.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/generate/../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/buffy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/dot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/dot/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/hapi.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/hapi/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/html.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/schedule/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/output/xml/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/component.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/connection.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/memory.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/processor.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/tile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/flow.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/scheduling.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/resource_allocation/tile_allocation/binding.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/autoconc.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/buffersize.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/model/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/sdftoapg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/../../base/timed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/to_apg/apg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/hsdf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/../../base/untimed/graph.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/hsdf/unfold.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/reverse_channels.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/transform/misc/../../base/timed/graph.h \ -+ ../../../csdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../csdf/analysis/throughput/throughput.h \ -+ ../../../csdf/analysis/throughput/selftimed_throughput.h \ -+ ../../../csdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../../csdf/generate/generate.h ../../../csdf/generate/../csdf.h \ -+ ../../../csdf/output/buffer_throughput/buffy.h \ -+ ../../../csdf/output/buffer_throughput/../../csdf.h \ -+ ../../../csdf/output/xml/xml.h ../../../csdf/output/xml/../../csdf.h \ -+ ../../../csdf/transform/to_sdf/sdftocsdf.h \ -+ ../../../csdf/transform/to_sdf/../../csdf.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_transformation_fsmsadf_sadf2fsmsadf.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_transformation_fsmsadf_sadf2fsmsadf.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_transformation_fsmsadf_sadf2fsmsadf.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_transformation_fsmsadf_sadf2fsmsadf.d 2022-01-07 15:16:38.212383366 +0800 -@@ -0,0 +1,285 @@ -+sadf_transformation_fsmsadf_sadf2fsmsadf.o: sadf2fsmsadf.cc sadf2fsmsadf.h \ -+ ../../base/sadf/sadf_graph.h ../../base/sadf/sadf_process.h \ -+ ../../base/sadf/sadf_channel.h ../../base/sadf/sadf_component.h \ -+ ../../base/sadf/sadf_defines.h ../../base/sadf/../../../base/base.h \ -+ ../../base/sadf/../../../base/exception/exception.h \ -+ ../../base/sadf/../../../base/exception/../string/cstring.h \ -+ ../../base/sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../base/sadf/../../../base/exception/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/fraction.h \ -+ ../../base/sadf/../../../base/fraction/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/../math/cmath.h \ -+ ../../base/sadf/../../../base/fraction/../string/cstring.h \ -+ ../../base/sadf/../../../base/xml/xml.h \ -+ ../../base/sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/sadf/../../../base/tempfile/tempfile.h \ -+ ../../base/sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../base/sadf/../../../base/math/cmath.h \ -+ ../../base/sadf/../../../base/random/random.h \ -+ ../../base/sadf/../../../base/sort/sort.h \ -+ ../../base/sadf/../../../base/time/time.h \ -+ ../../base/sadf/../../../base/time/../basic_types.h \ -+ ../../base/sadf/../../../base/time/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/log.h \ -+ ../../base/sadf/../../../base/log/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/../basic_types.h \ -+ ../../base/sadf/../../../base/sequence/sequence.h \ -+ ../../base/sadf/../../../base/sequence/../basic_types.h \ -+ ../../base/sadf/../../../base/matrix/matrix.h \ -+ ../../base/sadf/../../../base/matrix/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/maxplus.h \ -+ ../../base/sadf/../../../base/maxplus/mptype.h \ -+ ../../base/sadf/../../../base/maxplus/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../base/sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../base/sadf/../../../base/lookup/clookup.h \ -+ ../../base/sadf/sadf_profile.h ../../base/sadf/sadf_markovchain.h \ -+ ../scenario/sadf_collection.h ../scenario/sadf_fix_scenario.h \ -+ ../scenario/../../base/sadf/sadf_graph.h \ -+ ../scenario/../../verification/moc/sadf_moc.h \ -+ ../scenario/../../verification/moc/../../base/sadf/sadf_graph.h \ -+ ../scenario/../sdf/sadf2sdf.h \ -+ ../scenario/../sdf/../../base/sadf/sadf_graph.h \ -+ ../scenario/../sdf/../../verification/moc/sadf_moc.h \ -+ ../scenario/../sdf/../../../sdf/sdf.h \ -+ ../scenario/../sdf/../../../sdf/base/untimed/graph.h \ -+ ../scenario/../sdf/../../../sdf/base/untimed/channel.h \ -+ ../scenario/../sdf/../../../sdf/base/untimed/actor.h \ -+ ../scenario/../sdf/../../../sdf/base/untimed/port.h \ -+ ../scenario/../sdf/../../../sdf/base/untimed/component.h \ -+ ../scenario/../sdf/../../../sdf/base/untimed/../../../base/base.h \ -+ ../scenario/../sdf/../../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../scenario/../sdf/../../../sdf/base/untimed/../../basic_types.h \ -+ ../scenario/../sdf/../../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../scenario/../sdf/../../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../scenario/../sdf/../../../sdf/base/timed/graph.h \ -+ ../scenario/../sdf/../../../sdf/base/timed/channel.h \ -+ ../scenario/../sdf/../../../sdf/base/timed/../untimed/graph.h \ -+ ../scenario/../sdf/../../../sdf/base/timed/timed_types.h \ -+ ../scenario/../sdf/../../../sdf/base/timed/actor.h \ -+ ../scenario/../sdf/../../../sdf/base/algo/acyclic.h \ -+ ../scenario/../sdf/../../../sdf/base/algo/../untimed/graph.h \ -+ ../scenario/../sdf/../../../sdf/base/algo/components.h \ -+ ../scenario/../sdf/../../../sdf/base/algo/../../../base/base.h \ -+ ../scenario/../sdf/../../../sdf/base/algo/connected.h \ -+ ../scenario/../sdf/../../../sdf/base/algo/cycle.h \ -+ ../scenario/../sdf/../../../sdf/base/algo/dfs.h \ -+ ../scenario/../sdf/../../../sdf/base/algo/repetition_vector.h \ -+ ../scenario/../sdf/../../../sdf/base/hsdf/check.h \ -+ ../scenario/../sdf/../../../sdf/base/hsdf/../untimed/graph.h \ -+ ../scenario/../sdf/../../../sdf/analysis/analysis.h \ -+ ../scenario/../sdf/../../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../scenario/../sdf/../../../sdf/analysis/buffersizing/buffer.h \ -+ ../scenario/../sdf/../../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../scenario/../sdf/../../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../scenario/../sdf/../../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../scenario/../sdf/../../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../scenario/../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../scenario/../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../scenario/../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../scenario/../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../scenario/../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../scenario/../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../scenario/../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../scenario/../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../scenario/../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../scenario/../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../scenario/../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../scenario/../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../scenario/../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../scenario/../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../scenario/../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../scenario/../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../scenario/../sdf/../../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../scenario/../sdf/../../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../scenario/../sdf/../../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../scenario/../sdf/../../../sdf/analysis/latency/latency.h \ -+ ../scenario/../sdf/../../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../scenario/../sdf/../../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../scenario/../sdf/../../../sdf/analysis/latency/minimal.h \ -+ ../scenario/../sdf/../../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../scenario/../sdf/../../../sdf/analysis/latency/selftimed.h \ -+ ../scenario/../sdf/../../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../scenario/../sdf/../../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../scenario/../sdf/../../../sdf/analysis/mcm/mcm.h \ -+ ../scenario/../sdf/../../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../scenario/../sdf/../../../sdf/analysis/mcm/mcmgraph.h \ -+ ../scenario/../sdf/../../../sdf/analysis/throughput/throughput.h \ -+ ../scenario/../sdf/../../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../scenario/../sdf/../../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../scenario/../sdf/../../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../scenario/../sdf/../../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../scenario/../sdf/../../../sdf/analysis/throughput/deadlock.h \ -+ ../scenario/../sdf/../../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../scenario/../sdf/../../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../scenario/../sdf/../../../sdf/analysis/token_communication/comm_trace.h \ -+ ../scenario/../sdf/../../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../scenario/../sdf/../../../sdf/analysis/maxplus/mpexplore.h \ -+ ../scenario/../sdf/../../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../scenario/../sdf/../../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../scenario/../sdf/../../../sdf/generate/generate.h \ -+ ../scenario/../sdf/../../../sdf/generate/../base/timed/graph.h \ -+ ../scenario/../sdf/../../../sdf/output/buffer_throughput/buffy.h \ -+ ../scenario/../sdf/../../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../scenario/../sdf/../../../sdf/output/dot/dot.h \ -+ ../scenario/../sdf/../../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../scenario/../sdf/../../../sdf/output/hapi/hapi.h \ -+ ../scenario/../sdf/../../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../scenario/../sdf/../../../sdf/output/html/html.h \ -+ ../scenario/../sdf/../../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../scenario/../sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../scenario/../sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../scenario/../sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../scenario/../sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../scenario/../sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../scenario/../sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../scenario/../sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../scenario/../sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../scenario/../sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../scenario/../sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../scenario/../sdf/../../../sdf/output/schedule/schedule.h \ -+ ../scenario/../sdf/../../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../scenario/../sdf/../../../sdf/output/xml/xml.h \ -+ ../scenario/../sdf/../../../sdf/output/xml/../../base/timed/graph.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/flow/flow.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../scenario/../sdf/../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../scenario/../sdf/../../../sdf/transform/model/autoconc.h \ -+ ../scenario/../sdf/../../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../scenario/../sdf/../../../sdf/transform/model/buffersize.h \ -+ ../scenario/../sdf/../../../sdf/transform/model/../../base/timed/graph.h \ -+ ../scenario/../sdf/../../../sdf/transform/to_apg/apg.h \ -+ ../scenario/../sdf/../../../sdf/transform/to_apg/../../../base/base.h \ -+ ../scenario/../sdf/../../../sdf/transform/to_apg/sdftoapg.h \ -+ ../scenario/../sdf/../../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../scenario/../sdf/../../../sdf/transform/to_apg/apg.h \ -+ ../scenario/../sdf/../../../sdf/transform/hsdf/hsdf.h \ -+ ../scenario/../sdf/../../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../scenario/../sdf/../../../sdf/transform/hsdf/unfold.h \ -+ ../scenario/../sdf/../../../sdf/transform/misc/reverse_channels.h \ -+ ../scenario/../sdf/../../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../../fsmsadf/fsmsadf.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ ../../../fsmsadf/base/actor.h ../../../fsmsadf/base/port.h \ -+ ../../../fsmsadf/base/type.h ../../../fsmsadf/base/component.h \ -+ ../../../fsmsadf/base/../../base/base.h \ -+ ../../../fsmsadf/base/memorytype.h ../../../fsmsadf/base/scenario.h \ -+ ../../../fsmsadf/base/channel.h ../../../fsmsadf/base/actor.h \ -+ ../../../fsmsadf/base/graph.h ../../../fsmsadf/base/../../sdf/sdf.h \ -+ ../../../fsmsadf/base/channel.h ../../../fsmsadf/base/fsm.h \ -+ ../../../fsmsadf/base/port.h ../../../fsmsadf/analysis/analysis.h \ -+ ../../../fsmsadf/analysis/throughput/throughput.h \ -+ ../../../fsmsadf/analysis/throughput/scenariograph.h \ -+ ../../../fsmsadf/analysis/throughput/../../base/graph.h \ -+ ../../../fsmsadf/analysis/throughput/fsm_ref_schedule.h \ -+ ../../../fsmsadf/analysis/throughput/fsm_scenario_transitions.h \ -+ ../../../fsmsadf/analysis/throughput/statespace.h \ -+ ../../../fsmsadf/analysis/throughput/../../base/fsm.h \ -+ ../../../fsmsadf/analysis/throughput/thrutils.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/fsm.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fsm/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ ../../../fsmsadf/analysis/throughput/maxplusautomaton.h \ -+ ../../../fsmsadf/analysis/maxplus/mpexplore.h \ -+ ../../../fsmsadf/analysis/maxplus/../base/repetition_vector.h \ -+ ../../../fsmsadf/analysis/maxplus/../base/../../../base/base.h \ -+ ../../../fsmsadf/analysis/maxplus/../base/../../base/graph.h \ -+ ../../../fsmsadf/analysis/maxplus/../../base/graph.h \ -+ ../../../fsmsadf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ ../../../fsmsadf/generate/generate.h \ -+ ../../../fsmsadf/generate/../base/graph.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/flow.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/memory.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/graph.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/tile.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/processor.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/graph.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/tile.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/processor.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/../../base/type.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/memory.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/networkinterface.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../platform_graph/connection.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../../base/graph.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/static_order_schedule.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/../scheduling/static_order/../../../base/graph.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/memory.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/constraint.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/networkinterface.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../memory/../../../platform_binding/connection.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/binding.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/graph_binding.h \ -+ ../../../fsmsadf/resource_allocation/flow/base_platform/base/../tile/../../../platform_binding/graph.h \ -+ ../../../fsmsadf/resource_allocation/flow/virtual_platform/base/flow.h \ -+ ../../../fsmsadf/resource_allocation/flow/virtual_platform/base/../../base_platform/base/flow.h \ -+ ../../../fsmsadf/resource_allocation/flow/compsoc_platform/base/flow.h \ -+ ../../../fsmsadf/resource_allocation/flow/compsoc_platform/base/../../base_platform/base/flow.h \ -+ ../../../fsmsadf/resource_allocation/flow/mamps_platform/base/flow.h \ -+ ../../../fsmsadf/resource_allocation/flow/mamps_platform/base/../../base_platform/base/flow.h \ -+ ../../../fsmsadf/transform/transform.h \ -+ ../../../fsmsadf/transform/worst-case/worst-case.h \ -+ ../../../fsmsadf/transform/worst-case/../../base/graph.h \ -+ ../../../fsmsadf/transform/auto-concurrency/auto-concurrency.h \ -+ ../../../fsmsadf/transform/auto-concurrency/../../base/graph.h \ -+ ../../../fsmsadf/output/html/html.h \ -+ ../../../fsmsadf/output/html/../../resource_allocation/flow/base_platform/base/flow.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_transformation_scenario_sadf_collection.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_transformation_scenario_sadf_collection.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_transformation_scenario_sadf_collection.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_transformation_scenario_sadf_collection.d 2022-01-07 15:16:41.069069307 +0800 -@@ -0,0 +1,216 @@ -+sadf_transformation_scenario_sadf_collection.o: sadf_collection.cc sadf_collection.h \ -+ sadf_fix_scenario.h ../../base/sadf/sadf_graph.h \ -+ ../../base/sadf/sadf_process.h ../../base/sadf/sadf_channel.h \ -+ ../../base/sadf/sadf_component.h ../../base/sadf/sadf_defines.h \ -+ ../../base/sadf/../../../base/base.h \ -+ ../../base/sadf/../../../base/exception/exception.h \ -+ ../../base/sadf/../../../base/exception/../string/cstring.h \ -+ ../../base/sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../base/sadf/../../../base/exception/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/fraction.h \ -+ ../../base/sadf/../../../base/fraction/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/../math/cmath.h \ -+ ../../base/sadf/../../../base/fraction/../string/cstring.h \ -+ ../../base/sadf/../../../base/xml/xml.h \ -+ ../../base/sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/sadf/../../../base/tempfile/tempfile.h \ -+ ../../base/sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../base/sadf/../../../base/math/cmath.h \ -+ ../../base/sadf/../../../base/random/random.h \ -+ ../../base/sadf/../../../base/sort/sort.h \ -+ ../../base/sadf/../../../base/time/time.h \ -+ ../../base/sadf/../../../base/time/../basic_types.h \ -+ ../../base/sadf/../../../base/time/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/log.h \ -+ ../../base/sadf/../../../base/log/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/../basic_types.h \ -+ ../../base/sadf/../../../base/sequence/sequence.h \ -+ ../../base/sadf/../../../base/sequence/../basic_types.h \ -+ ../../base/sadf/../../../base/matrix/matrix.h \ -+ ../../base/sadf/../../../base/matrix/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/maxplus.h \ -+ ../../base/sadf/../../../base/maxplus/mptype.h \ -+ ../../base/sadf/../../../base/maxplus/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../base/sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../base/sadf/../../../base/lookup/clookup.h \ -+ ../../base/sadf/sadf_profile.h ../../base/sadf/sadf_markovchain.h \ -+ ../../verification/moc/sadf_moc.h \ -+ ../../verification/moc/../../base/sadf/sadf_graph.h ../sdf/sadf2sdf.h \ -+ ../sdf/../../base/sadf/sadf_graph.h \ -+ ../sdf/../../verification/moc/sadf_moc.h ../sdf/../../../sdf/sdf.h \ -+ ../sdf/../../../sdf/base/untimed/graph.h \ -+ ../sdf/../../../sdf/base/untimed/channel.h \ -+ ../sdf/../../../sdf/base/untimed/actor.h \ -+ ../sdf/../../../sdf/base/untimed/port.h \ -+ ../sdf/../../../sdf/base/untimed/component.h \ -+ ../sdf/../../../sdf/base/untimed/../../../base/base.h \ -+ ../sdf/../../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../sdf/../../../sdf/base/untimed/../../basic_types.h \ -+ ../sdf/../../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../sdf/../../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../sdf/../../../sdf/base/timed/graph.h \ -+ ../sdf/../../../sdf/base/timed/channel.h \ -+ ../sdf/../../../sdf/base/timed/../untimed/graph.h \ -+ ../sdf/../../../sdf/base/timed/timed_types.h \ -+ ../sdf/../../../sdf/base/timed/actor.h \ -+ ../sdf/../../../sdf/base/algo/acyclic.h \ -+ ../sdf/../../../sdf/base/algo/../untimed/graph.h \ -+ ../sdf/../../../sdf/base/algo/components.h \ -+ ../sdf/../../../sdf/base/algo/../../../base/base.h \ -+ ../sdf/../../../sdf/base/algo/connected.h \ -+ ../sdf/../../../sdf/base/algo/cycle.h \ -+ ../sdf/../../../sdf/base/algo/dfs.h \ -+ ../sdf/../../../sdf/base/algo/repetition_vector.h \ -+ ../sdf/../../../sdf/base/hsdf/check.h \ -+ ../sdf/../../../sdf/base/hsdf/../untimed/graph.h \ -+ ../sdf/../../../sdf/analysis/analysis.h \ -+ ../sdf/../../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../sdf/../../../sdf/analysis/buffersizing/buffer.h \ -+ ../sdf/../../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../sdf/../../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../sdf/../../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../sdf/../../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../sdf/../../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../sdf/../../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../sdf/../../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../sdf/../../../sdf/analysis/latency/latency.h \ -+ ../sdf/../../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../sdf/../../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../sdf/../../../sdf/analysis/latency/minimal.h \ -+ ../sdf/../../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../sdf/../../../sdf/analysis/latency/selftimed.h \ -+ ../sdf/../../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../sdf/../../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../sdf/../../../sdf/analysis/mcm/mcm.h \ -+ ../sdf/../../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../sdf/../../../sdf/analysis/mcm/mcmgraph.h \ -+ ../sdf/../../../sdf/analysis/throughput/throughput.h \ -+ ../sdf/../../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../sdf/../../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../sdf/../../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../sdf/../../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../sdf/../../../sdf/analysis/throughput/deadlock.h \ -+ ../sdf/../../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../sdf/../../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../sdf/../../../sdf/analysis/token_communication/comm_trace.h \ -+ ../sdf/../../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../sdf/../../../sdf/analysis/maxplus/mpexplore.h \ -+ ../sdf/../../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../sdf/../../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../sdf/../../../sdf/generate/generate.h \ -+ ../sdf/../../../sdf/generate/../base/timed/graph.h \ -+ ../sdf/../../../sdf/output/buffer_throughput/buffy.h \ -+ ../sdf/../../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../sdf/../../../sdf/output/dot/dot.h \ -+ ../sdf/../../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../sdf/../../../sdf/output/hapi/hapi.h \ -+ ../sdf/../../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../sdf/../../../sdf/output/html/html.h \ -+ ../sdf/../../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../sdf/../../../sdf/output/schedule/schedule.h \ -+ ../sdf/../../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../sdf/../../../sdf/output/xml/xml.h \ -+ ../sdf/../../../sdf/output/xml/../../base/timed/graph.h \ -+ ../sdf/../../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../sdf/../../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../sdf/../../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../sdf/../../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../sdf/../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../sdf/../../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../sdf/../../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../sdf/../../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../sdf/../../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../sdf/../../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../sdf/../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../sdf/../../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../sdf/../../../sdf/resource_allocation/flow/flow.h \ -+ ../sdf/../../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../sdf/../../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../sdf/../../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../sdf/../../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../sdf/../../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../sdf/../../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../sdf/../../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../sdf/../../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../sdf/../../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../sdf/../../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../sdf/../../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../sdf/../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../sdf/../../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../sdf/../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../sdf/../../../sdf/transform/model/autoconc.h \ -+ ../sdf/../../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../sdf/../../../sdf/transform/model/buffersize.h \ -+ ../sdf/../../../sdf/transform/model/../../base/timed/graph.h \ -+ ../sdf/../../../sdf/transform/to_apg/apg.h \ -+ ../sdf/../../../sdf/transform/to_apg/../../../base/base.h \ -+ ../sdf/../../../sdf/transform/to_apg/sdftoapg.h \ -+ ../sdf/../../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../sdf/../../../sdf/transform/to_apg/apg.h \ -+ ../sdf/../../../sdf/transform/hsdf/hsdf.h \ -+ ../sdf/../../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../sdf/../../../sdf/transform/hsdf/unfold.h \ -+ ../sdf/../../../sdf/transform/misc/reverse_channels.h \ -+ ../sdf/../../../sdf/transform/misc/../../base/timed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_transformation_scenario_sadf_fix_scenario.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_transformation_scenario_sadf_fix_scenario.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_transformation_scenario_sadf_fix_scenario.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_transformation_scenario_sadf_fix_scenario.d 2022-01-07 15:16:42.549079348 +0800 -@@ -0,0 +1,55 @@ -+sadf_transformation_scenario_sadf_fix_scenario.o: sadf_fix_scenario.cc sadf_fix_scenario.h \ -+ ../../base/sadf/sadf_graph.h ../../base/sadf/sadf_process.h \ -+ ../../base/sadf/sadf_channel.h ../../base/sadf/sadf_component.h \ -+ ../../base/sadf/sadf_defines.h ../../base/sadf/../../../base/base.h \ -+ ../../base/sadf/../../../base/exception/exception.h \ -+ ../../base/sadf/../../../base/exception/../string/cstring.h \ -+ ../../base/sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../base/sadf/../../../base/exception/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/fraction.h \ -+ ../../base/sadf/../../../base/fraction/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/../math/cmath.h \ -+ ../../base/sadf/../../../base/fraction/../string/cstring.h \ -+ ../../base/sadf/../../../base/xml/xml.h \ -+ ../../base/sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/sadf/../../../base/tempfile/tempfile.h \ -+ ../../base/sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../base/sadf/../../../base/math/cmath.h \ -+ ../../base/sadf/../../../base/random/random.h \ -+ ../../base/sadf/../../../base/sort/sort.h \ -+ ../../base/sadf/../../../base/time/time.h \ -+ ../../base/sadf/../../../base/time/../basic_types.h \ -+ ../../base/sadf/../../../base/time/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/log.h \ -+ ../../base/sadf/../../../base/log/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/../basic_types.h \ -+ ../../base/sadf/../../../base/sequence/sequence.h \ -+ ../../base/sadf/../../../base/sequence/../basic_types.h \ -+ ../../base/sadf/../../../base/matrix/matrix.h \ -+ ../../base/sadf/../../../base/matrix/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/maxplus.h \ -+ ../../base/sadf/../../../base/maxplus/mptype.h \ -+ ../../base/sadf/../../../base/maxplus/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../base/sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../base/sadf/../../../base/lookup/clookup.h \ -+ ../../base/sadf/sadf_profile.h ../../base/sadf/sadf_markovchain.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_transformation_sdf_sadf2sdf.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_transformation_sdf_sadf2sdf.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_transformation_sdf_sadf2sdf.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_transformation_sdf_sadf2sdf.d 2022-01-07 15:16:43.935755449 +0800 -@@ -0,0 +1,205 @@ -+sadf_transformation_sdf_sadf2sdf.o: sadf2sdf.cc sadf2sdf.h ../../base/sadf/sadf_graph.h \ -+ ../../base/sadf/sadf_process.h ../../base/sadf/sadf_channel.h \ -+ ../../base/sadf/sadf_component.h ../../base/sadf/sadf_defines.h \ -+ ../../base/sadf/../../../base/base.h \ -+ ../../base/sadf/../../../base/exception/exception.h \ -+ ../../base/sadf/../../../base/exception/../string/cstring.h \ -+ ../../base/sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../base/sadf/../../../base/exception/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/fraction.h \ -+ ../../base/sadf/../../../base/fraction/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/../math/cmath.h \ -+ ../../base/sadf/../../../base/fraction/../string/cstring.h \ -+ ../../base/sadf/../../../base/xml/xml.h \ -+ ../../base/sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/sadf/../../../base/tempfile/tempfile.h \ -+ ../../base/sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../base/sadf/../../../base/math/cmath.h \ -+ ../../base/sadf/../../../base/random/random.h \ -+ ../../base/sadf/../../../base/sort/sort.h \ -+ ../../base/sadf/../../../base/time/time.h \ -+ ../../base/sadf/../../../base/time/../basic_types.h \ -+ ../../base/sadf/../../../base/time/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/log.h \ -+ ../../base/sadf/../../../base/log/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/../basic_types.h \ -+ ../../base/sadf/../../../base/sequence/sequence.h \ -+ ../../base/sadf/../../../base/sequence/../basic_types.h \ -+ ../../base/sadf/../../../base/matrix/matrix.h \ -+ ../../base/sadf/../../../base/matrix/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/maxplus.h \ -+ ../../base/sadf/../../../base/maxplus/mptype.h \ -+ ../../base/sadf/../../../base/maxplus/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../base/sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../base/sadf/../../../base/lookup/clookup.h \ -+ ../../base/sadf/sadf_profile.h ../../base/sadf/sadf_markovchain.h \ -+ ../../verification/moc/sadf_moc.h \ -+ ../../verification/moc/../../base/sadf/sadf_graph.h ../../../sdf/sdf.h \ -+ ../../../sdf/base/untimed/graph.h ../../../sdf/base/untimed/channel.h \ -+ ../../../sdf/base/untimed/actor.h ../../../sdf/base/untimed/port.h \ -+ ../../../sdf/base/untimed/component.h \ -+ ../../../sdf/base/untimed/../../../base/base.h \ -+ ../../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../../sdf/base/untimed/../../basic_types.h \ -+ ../../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../../sdf/base/timed/graph.h ../../../sdf/base/timed/channel.h \ -+ ../../../sdf/base/timed/../untimed/graph.h \ -+ ../../../sdf/base/timed/timed_types.h ../../../sdf/base/timed/actor.h \ -+ ../../../sdf/base/algo/acyclic.h \ -+ ../../../sdf/base/algo/../untimed/graph.h \ -+ ../../../sdf/base/algo/components.h \ -+ ../../../sdf/base/algo/../../../base/base.h \ -+ ../../../sdf/base/algo/connected.h ../../../sdf/base/algo/cycle.h \ -+ ../../../sdf/base/algo/dfs.h ../../../sdf/base/algo/repetition_vector.h \ -+ ../../../sdf/base/hsdf/check.h ../../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../../sdf/analysis/analysis.h \ -+ ../../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../../sdf/analysis/buffersizing/buffer.h \ -+ ../../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../../sdf/analysis/latency/latency.h \ -+ ../../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../../sdf/analysis/latency/minimal.h \ -+ ../../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../../sdf/analysis/latency/selftimed.h \ -+ ../../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../../sdf/analysis/mcm/mcm.h \ -+ ../../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../../sdf/analysis/throughput/throughput.h \ -+ ../../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../sdf/analysis/throughput/deadlock.h \ -+ ../../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../../sdf/generate/generate.h \ -+ ../../../sdf/generate/../base/timed/graph.h \ -+ ../../../sdf/output/buffer_throughput/buffy.h \ -+ ../../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../../sdf/output/dot/dot.h \ -+ ../../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../../sdf/output/hapi/hapi.h \ -+ ../../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../../sdf/output/html/html.h \ -+ ../../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../../sdf/output/schedule/schedule.h \ -+ ../../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../../sdf/output/xml/xml.h \ -+ ../../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../../sdf/resource_allocation/flow/flow.h \ -+ ../../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../sdf/transform/model/autoconc.h \ -+ ../../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../../sdf/transform/model/buffersize.h \ -+ ../../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../../sdf/transform/to_apg/apg.h \ -+ ../../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../../sdf/transform/to_apg/apg.h ../../../sdf/transform/hsdf/hsdf.h \ -+ ../../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../../sdf/transform/hsdf/unfold.h \ -+ ../../../sdf/transform/misc/reverse_channels.h \ -+ ../../../sdf/transform/misc/../../base/timed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_transformation_sdf_sdf2sadf.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_transformation_sdf_sdf2sadf.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_transformation_sdf_sdf2sadf.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_transformation_sdf_sdf2sadf.d 2022-01-07 15:16:45.572433294 +0800 -@@ -0,0 +1,203 @@ -+sadf_transformation_sdf_sdf2sadf.o: sdf2sadf.cc sdf2sadf.h ../../../sdf/sdf.h \ -+ ../../../sdf/base/untimed/graph.h ../../../sdf/base/untimed/channel.h \ -+ ../../../sdf/base/untimed/actor.h ../../../sdf/base/untimed/port.h \ -+ ../../../sdf/base/untimed/component.h \ -+ ../../../sdf/base/untimed/../../../base/base.h \ -+ ../../../sdf/base/untimed/../../../base/exception/exception.h \ -+ ../../../sdf/base/untimed/../../../base/exception/../string/cstring.h \ -+ ../../../sdf/base/untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../../sdf/base/untimed/../../../base/exception/../basic_types.h \ -+ ../../../sdf/base/untimed/../../../base/fraction/fraction.h \ -+ ../../../sdf/base/untimed/../../../base/fraction/../basic_types.h \ -+ ../../../sdf/base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../../../sdf/base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../../sdf/base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../sdf/base/untimed/../../../base/tempfile/tempfile.h \ -+ ../../../sdf/base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../../sdf/base/untimed/../../../base/math/cmath.h \ -+ ../../../sdf/base/untimed/../../../base/random/random.h \ -+ ../../../sdf/base/untimed/../../../base/sort/sort.h \ -+ ../../../sdf/base/untimed/../../../base/time/time.h \ -+ ../../../sdf/base/untimed/../../../base/time/../basic_types.h \ -+ ../../../sdf/base/untimed/../../../base/time/../string/cstring.h \ -+ ../../../sdf/base/untimed/../../../base/log/log.h \ -+ ../../../sdf/base/untimed/../../../base/log/../string/cstring.h \ -+ ../../../sdf/base/untimed/../../../base/log/../basic_types.h \ -+ ../../../sdf/base/untimed/../../../base/sequence/sequence.h \ -+ ../../../sdf/base/untimed/../../../base/sequence/../basic_types.h \ -+ ../../../sdf/base/untimed/../../../base/matrix/matrix.h \ -+ ../../../sdf/base/untimed/../../../base/matrix/../basic_types.h \ -+ ../../../sdf/base/untimed/../../../base/maxplus/maxplus.h \ -+ ../../../sdf/base/untimed/../../../base/maxplus/mptype.h \ -+ ../../../sdf/base/untimed/../../../base/maxplus/../basic_types.h \ -+ ../../../sdf/base/untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../../sdf/base/untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../../sdf/base/untimed/../../../base/lookup/clookup.h \ -+ ../../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../../sdf/base/untimed/../../basic_types.h \ -+ ../../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../../sdf/base/timed/graph.h ../../../sdf/base/timed/channel.h \ -+ ../../../sdf/base/timed/../untimed/graph.h \ -+ ../../../sdf/base/timed/timed_types.h ../../../sdf/base/timed/actor.h \ -+ ../../../sdf/base/algo/acyclic.h \ -+ ../../../sdf/base/algo/../untimed/graph.h \ -+ ../../../sdf/base/algo/components.h \ -+ ../../../sdf/base/algo/../../../base/base.h \ -+ ../../../sdf/base/algo/connected.h ../../../sdf/base/algo/cycle.h \ -+ ../../../sdf/base/algo/dfs.h ../../../sdf/base/algo/repetition_vector.h \ -+ ../../../sdf/base/hsdf/check.h ../../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../../sdf/analysis/analysis.h \ -+ ../../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../../sdf/analysis/buffersizing/buffer.h \ -+ ../../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../../sdf/analysis/latency/latency.h \ -+ ../../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../../sdf/analysis/latency/minimal.h \ -+ ../../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../../sdf/analysis/latency/selftimed.h \ -+ ../../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../../sdf/analysis/mcm/mcm.h \ -+ ../../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../../sdf/analysis/throughput/throughput.h \ -+ ../../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../sdf/analysis/throughput/deadlock.h \ -+ ../../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../../sdf/generate/generate.h \ -+ ../../../sdf/generate/../base/timed/graph.h \ -+ ../../../sdf/output/buffer_throughput/buffy.h \ -+ ../../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../../sdf/output/dot/dot.h \ -+ ../../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../../sdf/output/hapi/hapi.h \ -+ ../../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../../sdf/output/html/html.h \ -+ ../../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../../sdf/output/schedule/schedule.h \ -+ ../../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../../sdf/output/xml/xml.h \ -+ ../../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../../sdf/resource_allocation/flow/flow.h \ -+ ../../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../../sdf/transform/model/autoconc.h \ -+ ../../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../../sdf/transform/model/buffersize.h \ -+ ../../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../../sdf/transform/to_apg/apg.h \ -+ ../../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../../sdf/transform/to_apg/apg.h ../../../sdf/transform/hsdf/hsdf.h \ -+ ../../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../../sdf/transform/hsdf/unfold.h \ -+ ../../../sdf/transform/misc/reverse_channels.h \ -+ ../../../sdf/transform/misc/../../base/timed/graph.h \ -+ ../../base/sadf/sadf_graph.h ../../base/sadf/sadf_process.h \ -+ ../../base/sadf/sadf_channel.h ../../base/sadf/sadf_component.h \ -+ ../../base/sadf/sadf_defines.h ../../base/sadf/../../../base/base.h \ -+ ../../base/sadf/sadf_profile.h ../../base/sadf/sadf_markovchain.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_transformation_timing_sadf_timing.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_transformation_timing_sadf_timing.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_transformation_timing_sadf_timing.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_transformation_timing_sadf_timing.d 2022-01-07 15:16:47.212444536 +0800 -@@ -0,0 +1,55 @@ -+sadf_transformation_timing_sadf_timing.o: sadf_timing.cc sadf_timing.h ../../base/sadf/sadf_graph.h \ -+ ../../base/sadf/sadf_process.h ../../base/sadf/sadf_channel.h \ -+ ../../base/sadf/sadf_component.h ../../base/sadf/sadf_defines.h \ -+ ../../base/sadf/../../../base/base.h \ -+ ../../base/sadf/../../../base/exception/exception.h \ -+ ../../base/sadf/../../../base/exception/../string/cstring.h \ -+ ../../base/sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../base/sadf/../../../base/exception/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/fraction.h \ -+ ../../base/sadf/../../../base/fraction/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/../math/cmath.h \ -+ ../../base/sadf/../../../base/fraction/../string/cstring.h \ -+ ../../base/sadf/../../../base/xml/xml.h \ -+ ../../base/sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/sadf/../../../base/tempfile/tempfile.h \ -+ ../../base/sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../base/sadf/../../../base/math/cmath.h \ -+ ../../base/sadf/../../../base/random/random.h \ -+ ../../base/sadf/../../../base/sort/sort.h \ -+ ../../base/sadf/../../../base/time/time.h \ -+ ../../base/sadf/../../../base/time/../basic_types.h \ -+ ../../base/sadf/../../../base/time/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/log.h \ -+ ../../base/sadf/../../../base/log/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/../basic_types.h \ -+ ../../base/sadf/../../../base/sequence/sequence.h \ -+ ../../base/sadf/../../../base/sequence/../basic_types.h \ -+ ../../base/sadf/../../../base/matrix/matrix.h \ -+ ../../base/sadf/../../../base/matrix/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/maxplus.h \ -+ ../../base/sadf/../../../base/maxplus/mptype.h \ -+ ../../base/sadf/../../../base/maxplus/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../base/sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../base/sadf/../../../base/lookup/clookup.h \ -+ ../../base/sadf/sadf_profile.h ../../base/sadf/sadf_markovchain.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_verification_consistency_sadf_consistency.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_verification_consistency_sadf_consistency.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_verification_consistency_sadf_consistency.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_verification_consistency_sadf_consistency.d 2022-01-07 15:16:51.635808405 +0800 -@@ -0,0 +1,218 @@ -+sadf_verification_consistency_sadf_consistency.o: sadf_consistency.cc sadf_consistency.h \ -+ ../../base/sadf/sadf_graph.h ../../base/sadf/sadf_process.h \ -+ ../../base/sadf/sadf_channel.h ../../base/sadf/sadf_component.h \ -+ ../../base/sadf/sadf_defines.h ../../base/sadf/../../../base/base.h \ -+ ../../base/sadf/../../../base/exception/exception.h \ -+ ../../base/sadf/../../../base/exception/../string/cstring.h \ -+ ../../base/sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../base/sadf/../../../base/exception/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/fraction.h \ -+ ../../base/sadf/../../../base/fraction/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/../math/cmath.h \ -+ ../../base/sadf/../../../base/fraction/../string/cstring.h \ -+ ../../base/sadf/../../../base/xml/xml.h \ -+ ../../base/sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/sadf/../../../base/tempfile/tempfile.h \ -+ ../../base/sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../base/sadf/../../../base/math/cmath.h \ -+ ../../base/sadf/../../../base/random/random.h \ -+ ../../base/sadf/../../../base/sort/sort.h \ -+ ../../base/sadf/../../../base/time/time.h \ -+ ../../base/sadf/../../../base/time/../basic_types.h \ -+ ../../base/sadf/../../../base/time/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/log.h \ -+ ../../base/sadf/../../../base/log/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/../basic_types.h \ -+ ../../base/sadf/../../../base/sequence/sequence.h \ -+ ../../base/sadf/../../../base/sequence/../basic_types.h \ -+ ../../base/sadf/../../../base/matrix/matrix.h \ -+ ../../base/sadf/../../../base/matrix/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/maxplus.h \ -+ ../../base/sadf/../../../base/maxplus/mptype.h \ -+ ../../base/sadf/../../../base/maxplus/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../base/sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../base/sadf/../../../base/lookup/clookup.h \ -+ ../../base/sadf/sadf_profile.h ../../base/sadf/sadf_markovchain.h \ -+ ../../transformation/scenario/sadf_fix_scenario.h \ -+ ../../transformation/scenario/../../base/sadf/sadf_graph.h \ -+ ../../transformation/sdf/sadf2sdf.h \ -+ ../../transformation/sdf/../../base/sadf/sadf_graph.h \ -+ ../../transformation/sdf/../../verification/moc/sadf_moc.h \ -+ ../../transformation/sdf/../../verification/moc/../../base/sadf/sadf_graph.h \ -+ ../../transformation/sdf/../../../sdf/sdf.h \ -+ ../../transformation/sdf/../../../sdf/base/untimed/graph.h \ -+ ../../transformation/sdf/../../../sdf/base/untimed/channel.h \ -+ ../../transformation/sdf/../../../sdf/base/untimed/actor.h \ -+ ../../transformation/sdf/../../../sdf/base/untimed/port.h \ -+ ../../transformation/sdf/../../../sdf/base/untimed/component.h \ -+ ../../transformation/sdf/../../../sdf/base/untimed/../../../base/base.h \ -+ ../../transformation/sdf/../../../sdf/base/untimed/../../../base/basic_types.h \ -+ ../../transformation/sdf/../../../sdf/base/untimed/../../basic_types.h \ -+ ../../transformation/sdf/../../../sdf/base/untimed/../../../base/string/cstring.h \ -+ ../../transformation/sdf/../../../sdf/base/untimed/../../../base/xml/xml.h \ -+ ../../transformation/sdf/../../../sdf/base/timed/graph.h \ -+ ../../transformation/sdf/../../../sdf/base/timed/channel.h \ -+ ../../transformation/sdf/../../../sdf/base/timed/../untimed/graph.h \ -+ ../../transformation/sdf/../../../sdf/base/timed/timed_types.h \ -+ ../../transformation/sdf/../../../sdf/base/timed/actor.h \ -+ ../../transformation/sdf/../../../sdf/base/algo/acyclic.h \ -+ ../../transformation/sdf/../../../sdf/base/algo/../untimed/graph.h \ -+ ../../transformation/sdf/../../../sdf/base/algo/components.h \ -+ ../../transformation/sdf/../../../sdf/base/algo/../../../base/base.h \ -+ ../../transformation/sdf/../../../sdf/base/algo/connected.h \ -+ ../../transformation/sdf/../../../sdf/base/algo/cycle.h \ -+ ../../transformation/sdf/../../../sdf/base/algo/dfs.h \ -+ ../../transformation/sdf/../../../sdf/base/algo/repetition_vector.h \ -+ ../../transformation/sdf/../../../sdf/base/hsdf/check.h \ -+ ../../transformation/sdf/../../../sdf/base/hsdf/../untimed/graph.h \ -+ ../../transformation/sdf/../../../sdf/analysis/analysis.h \ -+ ../../transformation/sdf/../../../sdf/analysis/buffersizing/buffersizing.h \ -+ ../../transformation/sdf/../../../sdf/analysis/buffersizing/buffer.h \ -+ ../../transformation/sdf/../../../sdf/analysis/buffersizing/storage_distribution.h \ -+ ../../transformation/sdf/../../../sdf/analysis/buffersizing/../../basic_types.h \ -+ ../../transformation/sdf/../../../sdf/analysis/buffersizing/../../base/timed/graph.h \ -+ ../../transformation/sdf/../../../sdf/analysis/buffersizing/bounded_buffer.h \ -+ ../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../transformation/sdf/../../../sdf/analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../transformation/sdf/../../../sdf/analysis/buffersizing/buffer_ning_gao.h \ -+ ../../transformation/sdf/../../../sdf/analysis/dependency_graph/dependency_graph.h \ -+ ../../transformation/sdf/../../../sdf/analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../transformation/sdf/../../../sdf/analysis/latency/latency.h \ -+ ../../transformation/sdf/../../../sdf/analysis/latency/../../base/algo/components.h \ -+ ../../transformation/sdf/../../../sdf/analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../transformation/sdf/../../../sdf/analysis/latency/minimal.h \ -+ ../../transformation/sdf/../../../sdf/analysis/latency/../../base/timed/graph.h \ -+ ../../transformation/sdf/../../../sdf/analysis/latency/selftimed.h \ -+ ../../transformation/sdf/../../../sdf/analysis/latency/selftimed_minimal.h \ -+ ../../transformation/sdf/../../../sdf/analysis/latency/single_processor_random_staticorder.h \ -+ ../../transformation/sdf/../../../sdf/analysis/mcm/mcm.h \ -+ ../../transformation/sdf/../../../sdf/analysis/mcm/../../base/timed/graph.h \ -+ ../../transformation/sdf/../../../sdf/analysis/mcm/mcmgraph.h \ -+ ../../transformation/sdf/../../../sdf/analysis/throughput/throughput.h \ -+ ../../transformation/sdf/../../../sdf/analysis/throughput/selftimed_throughput.h \ -+ ../../transformation/sdf/../../../sdf/analysis/throughput/../../base/timed/graph.h \ -+ ../../transformation/sdf/../../../sdf/analysis/throughput/tdma_schedule.h \ -+ ../../transformation/sdf/../../../sdf/analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../transformation/sdf/../../../sdf/analysis/throughput/deadlock.h \ -+ ../../transformation/sdf/../../../sdf/analysis/throughput/static_periodic_ning_gao.h \ -+ ../../transformation/sdf/../../../sdf/analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../transformation/sdf/../../../sdf/analysis/token_communication/comm_trace.h \ -+ ../../transformation/sdf/../../../sdf/analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../transformation/sdf/../../../sdf/analysis/maxplus/mpexplore.h \ -+ ../../transformation/sdf/../../../sdf/analysis/maxplus/../../base/timed/graph.h \ -+ ../../transformation/sdf/../../../sdf/analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../transformation/sdf/../../../sdf/generate/generate.h \ -+ ../../transformation/sdf/../../../sdf/generate/../base/timed/graph.h \ -+ ../../transformation/sdf/../../../sdf/output/buffer_throughput/buffy.h \ -+ ../../transformation/sdf/../../../sdf/output/buffer_throughput/../../base/timed/graph.h \ -+ ../../transformation/sdf/../../../sdf/output/dot/dot.h \ -+ ../../transformation/sdf/../../../sdf/output/dot/../../base/untimed/graph.h \ -+ ../../transformation/sdf/../../../sdf/output/hapi/hapi.h \ -+ ../../transformation/sdf/../../../sdf/output/hapi/../../base/timed/graph.h \ -+ ../../transformation/sdf/../../../sdf/output/html/html.h \ -+ ../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../transformation/sdf/../../../sdf/output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../transformation/sdf/../../../sdf/output/schedule/schedule.h \ -+ ../../transformation/sdf/../../../sdf/output/schedule/../../base/timed/graph.h \ -+ ../../transformation/sdf/../../../sdf/output/xml/xml.h \ -+ ../../transformation/sdf/../../../sdf/output/xml/../../base/timed/graph.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/binding.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/component.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/connection.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/memory.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/processor.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/tile.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/xml.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/mpsoc_arch/graph.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/problem/problem.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/flow/flow.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/scheduling/scheduling.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_order_schedule.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/scheduling/list_scheduler.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/loadbalance.h \ -+ ../../transformation/sdf/../../../sdf/resource_allocation/tile_allocation/binding.h \ -+ ../../transformation/sdf/../../../sdf/transform/model/autoconc.h \ -+ ../../transformation/sdf/../../../sdf/transform/model/../../base/untimed/graph.h \ -+ ../../transformation/sdf/../../../sdf/transform/model/buffersize.h \ -+ ../../transformation/sdf/../../../sdf/transform/model/../../base/timed/graph.h \ -+ ../../transformation/sdf/../../../sdf/transform/to_apg/apg.h \ -+ ../../transformation/sdf/../../../sdf/transform/to_apg/../../../base/base.h \ -+ ../../transformation/sdf/../../../sdf/transform/to_apg/sdftoapg.h \ -+ ../../transformation/sdf/../../../sdf/transform/to_apg/../../base/timed/graph.h \ -+ ../../transformation/sdf/../../../sdf/transform/to_apg/apg.h \ -+ ../../transformation/sdf/../../../sdf/transform/hsdf/hsdf.h \ -+ ../../transformation/sdf/../../../sdf/transform/hsdf/../../base/untimed/graph.h \ -+ ../../transformation/sdf/../../../sdf/transform/hsdf/unfold.h \ -+ ../../transformation/sdf/../../../sdf/transform/misc/reverse_channels.h \ -+ ../../transformation/sdf/../../../sdf/transform/misc/../../base/timed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_verification_moc_sadf_moc.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_verification_moc_sadf_moc.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_verification_moc_sadf_moc.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_verification_moc_sadf_moc.d 2022-01-07 15:16:50.479133724 +0800 -@@ -0,0 +1,55 @@ -+sadf_verification_moc_sadf_moc.o: sadf_moc.cc sadf_moc.h ../../base/sadf/sadf_graph.h \ -+ ../../base/sadf/sadf_process.h ../../base/sadf/sadf_channel.h \ -+ ../../base/sadf/sadf_component.h ../../base/sadf/sadf_defines.h \ -+ ../../base/sadf/../../../base/base.h \ -+ ../../base/sadf/../../../base/exception/exception.h \ -+ ../../base/sadf/../../../base/exception/../string/cstring.h \ -+ ../../base/sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../base/sadf/../../../base/exception/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/fraction.h \ -+ ../../base/sadf/../../../base/fraction/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/../math/cmath.h \ -+ ../../base/sadf/../../../base/fraction/../string/cstring.h \ -+ ../../base/sadf/../../../base/xml/xml.h \ -+ ../../base/sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/sadf/../../../base/tempfile/tempfile.h \ -+ ../../base/sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../base/sadf/../../../base/math/cmath.h \ -+ ../../base/sadf/../../../base/random/random.h \ -+ ../../base/sadf/../../../base/sort/sort.h \ -+ ../../base/sadf/../../../base/time/time.h \ -+ ../../base/sadf/../../../base/time/../basic_types.h \ -+ ../../base/sadf/../../../base/time/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/log.h \ -+ ../../base/sadf/../../../base/log/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/../basic_types.h \ -+ ../../base/sadf/../../../base/sequence/sequence.h \ -+ ../../base/sadf/../../../base/sequence/../basic_types.h \ -+ ../../base/sadf/../../../base/matrix/matrix.h \ -+ ../../base/sadf/../../../base/matrix/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/maxplus.h \ -+ ../../base/sadf/../../../base/maxplus/mptype.h \ -+ ../../base/sadf/../../../base/maxplus/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../base/sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../base/sadf/../../../base/lookup/clookup.h \ -+ ../../base/sadf/sadf_profile.h ../../base/sadf/sadf_markovchain.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_verification_simple_sadf_ergodic.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_verification_simple_sadf_ergodic.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_verification_simple_sadf_ergodic.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_verification_simple_sadf_ergodic.d 2022-01-07 15:16:48.412452791 +0800 -@@ -0,0 +1,55 @@ -+sadf_verification_simple_sadf_ergodic.o: sadf_ergodic.cc sadf_ergodic.h \ -+ ../../base/sadf/sadf_graph.h ../../base/sadf/sadf_process.h \ -+ ../../base/sadf/sadf_channel.h ../../base/sadf/sadf_component.h \ -+ ../../base/sadf/sadf_defines.h ../../base/sadf/../../../base/base.h \ -+ ../../base/sadf/../../../base/exception/exception.h \ -+ ../../base/sadf/../../../base/exception/../string/cstring.h \ -+ ../../base/sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../base/sadf/../../../base/exception/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/fraction.h \ -+ ../../base/sadf/../../../base/fraction/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/../math/cmath.h \ -+ ../../base/sadf/../../../base/fraction/../string/cstring.h \ -+ ../../base/sadf/../../../base/xml/xml.h \ -+ ../../base/sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/sadf/../../../base/tempfile/tempfile.h \ -+ ../../base/sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../base/sadf/../../../base/math/cmath.h \ -+ ../../base/sadf/../../../base/random/random.h \ -+ ../../base/sadf/../../../base/sort/sort.h \ -+ ../../base/sadf/../../../base/time/time.h \ -+ ../../base/sadf/../../../base/time/../basic_types.h \ -+ ../../base/sadf/../../../base/time/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/log.h \ -+ ../../base/sadf/../../../base/log/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/../basic_types.h \ -+ ../../base/sadf/../../../base/sequence/sequence.h \ -+ ../../base/sadf/../../../base/sequence/../basic_types.h \ -+ ../../base/sadf/../../../base/matrix/matrix.h \ -+ ../../base/sadf/../../../base/matrix/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/maxplus.h \ -+ ../../base/sadf/../../../base/maxplus/mptype.h \ -+ ../../base/sadf/../../../base/maxplus/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../base/sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../base/sadf/../../../base/lookup/clookup.h \ -+ ../../base/sadf/sadf_profile.h ../../base/sadf/sadf_markovchain.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sadf_verification_simple_sadf_simple.d sdf3_custom/sdf3/build/work/Linux/dep/sadf_verification_simple_sadf_simple.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sadf_verification_simple_sadf_simple.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sadf_verification_simple_sadf_simple.d 2022-01-07 15:16:49.345792558 +0800 -@@ -0,0 +1,55 @@ -+sadf_verification_simple_sadf_simple.o: sadf_simple.cc sadf_simple.h ../../base/sadf/sadf_graph.h \ -+ ../../base/sadf/sadf_process.h ../../base/sadf/sadf_channel.h \ -+ ../../base/sadf/sadf_component.h ../../base/sadf/sadf_defines.h \ -+ ../../base/sadf/../../../base/base.h \ -+ ../../base/sadf/../../../base/exception/exception.h \ -+ ../../base/sadf/../../../base/exception/../string/cstring.h \ -+ ../../base/sadf/../../../base/exception/../string/../basic_types.h \ -+ ../../base/sadf/../../../base/exception/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/fraction.h \ -+ ../../base/sadf/../../../base/fraction/../basic_types.h \ -+ ../../base/sadf/../../../base/fraction/../math/cmath.h \ -+ ../../base/sadf/../../../base/fraction/../string/cstring.h \ -+ ../../base/sadf/../../../base/xml/xml.h \ -+ ../../base/sadf/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/sadf/../../../base/tempfile/tempfile.h \ -+ ../../base/sadf/../../../base/tempfile/../string/cstring.h \ -+ ../../base/sadf/../../../base/math/cmath.h \ -+ ../../base/sadf/../../../base/random/random.h \ -+ ../../base/sadf/../../../base/sort/sort.h \ -+ ../../base/sadf/../../../base/time/time.h \ -+ ../../base/sadf/../../../base/time/../basic_types.h \ -+ ../../base/sadf/../../../base/time/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/log.h \ -+ ../../base/sadf/../../../base/log/../string/cstring.h \ -+ ../../base/sadf/../../../base/log/../basic_types.h \ -+ ../../base/sadf/../../../base/sequence/sequence.h \ -+ ../../base/sadf/../../../base/sequence/../basic_types.h \ -+ ../../base/sadf/../../../base/matrix/matrix.h \ -+ ../../base/sadf/../../../base/matrix/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/maxplus.h \ -+ ../../base/sadf/../../../base/maxplus/mptype.h \ -+ ../../base/sadf/../../../base/maxplus/../basic_types.h \ -+ ../../base/sadf/../../../base/maxplus/../string/cstring.h \ -+ ../../base/sadf/../../../base/maxplus/mpmatrix.h \ -+ ../../base/sadf/../../../base/lookup/clookup.h \ -+ ../../base/sadf/sadf_profile.h ../../base/sadf/sadf_markovchain.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_buffersizing_bounded_buffer.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_buffersizing_bounded_buffer.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_buffersizing_bounded_buffer.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_buffersizing_bounded_buffer.d 2022-01-07 15:09:08.498253631 +0800 -@@ -0,0 +1,84 @@ -+sdf_analysis_buffersizing_bounded_buffer.o: bounded_buffer.cc bounded_buffer.h \ -+ storage_distribution.h ../../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/exception/exception.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/exception/../string/cstring.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/exception/../string/../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/exception/../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/fraction/fraction.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/fraction/../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/fraction/../math/cmath.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/fraction/../string/cstring.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/xml/xml.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/tempfile/tempfile.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/tempfile/../string/cstring.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/math/cmath.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/random/random.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/sort/sort.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/time/time.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/time/../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/time/../string/cstring.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/log/log.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/log/../string/cstring.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/log/../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/sequence/sequence.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/sequence/../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/matrix/matrix.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/matrix/../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/maxplus/maxplus.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/maxplus/mptype.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/maxplus/../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/maxplus/../string/cstring.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/maxplus/mpmatrix.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/channel.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/graph.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/channel.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/actor.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/port.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/component.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/../../../base/base.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/../../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/timed_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/actor.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/algo/repetition_vector.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/../untimed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_buffersizing_buffer_capacity_constrained.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_buffersizing_buffer_capacity_constrained.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_buffersizing_buffer_capacity_constrained.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_buffersizing_buffer_capacity_constrained.d 2022-01-07 15:09:10.104912538 +0800 -@@ -0,0 +1,82 @@ -+sdf_analysis_buffersizing_buffer_capacity_constrained.o: buffer_capacity_constrained.cc \ -+ storage_distribution.h ../../basic_types.h \ -+ ../../base/algo/repetition_vector.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/../../../base/exception/exception.h \ -+ ../../base/algo/../../../base/exception/../string/cstring.h \ -+ ../../base/algo/../../../base/exception/../string/../basic_types.h \ -+ ../../base/algo/../../../base/exception/../basic_types.h \ -+ ../../base/algo/../../../base/fraction/fraction.h \ -+ ../../base/algo/../../../base/fraction/../basic_types.h \ -+ ../../base/algo/../../../base/fraction/../math/cmath.h \ -+ ../../base/algo/../../../base/fraction/../string/cstring.h \ -+ ../../base/algo/../../../base/xml/xml.h \ -+ ../../base/algo/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/algo/../../../base/tempfile/tempfile.h \ -+ ../../base/algo/../../../base/tempfile/../string/cstring.h \ -+ ../../base/algo/../../../base/math/cmath.h \ -+ ../../base/algo/../../../base/random/random.h \ -+ ../../base/algo/../../../base/sort/sort.h \ -+ ../../base/algo/../../../base/time/time.h \ -+ ../../base/algo/../../../base/time/../basic_types.h \ -+ ../../base/algo/../../../base/time/../string/cstring.h \ -+ ../../base/algo/../../../base/log/log.h \ -+ ../../base/algo/../../../base/log/../string/cstring.h \ -+ ../../base/algo/../../../base/log/../basic_types.h \ -+ ../../base/algo/../../../base/sequence/sequence.h \ -+ ../../base/algo/../../../base/sequence/../basic_types.h \ -+ ../../base/algo/../../../base/matrix/matrix.h \ -+ ../../base/algo/../../../base/matrix/../basic_types.h \ -+ ../../base/algo/../../../base/maxplus/maxplus.h \ -+ ../../base/algo/../../../base/maxplus/mptype.h \ -+ ../../base/algo/../../../base/maxplus/../basic_types.h \ -+ ../../base/algo/../../../base/maxplus/../string/cstring.h \ -+ ../../base/algo/../../../base/maxplus/mpmatrix.h \ -+ ../../base/algo/../../../base/lookup/clookup.h \ -+ ../../base/algo/../untimed/graph.h ../../base/algo/../untimed/channel.h \ -+ ../../base/algo/../untimed/actor.h ../../base/algo/../untimed/port.h \ -+ ../../base/algo/../untimed/component.h \ -+ ../../base/algo/../untimed/../../../base/base.h \ -+ ../../base/algo/../untimed/../../../base/basic_types.h \ -+ ../../base/algo/../untimed/../../basic_types.h \ -+ ../../base/algo/../untimed/../../../base/string/cstring.h \ -+ ../../base/algo/../untimed/../../../base/xml/xml.h \ -+ ../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/channel.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/graph.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/timed_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/actor.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_buffersizing_buffer.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_buffersizing_buffer.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_buffersizing_buffer.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_buffersizing_buffer.d 2022-01-07 15:09:12.138236198 +0800 -@@ -0,0 +1,85 @@ -+sdf_analysis_buffersizing_buffer.o: buffer.cc buffer.h storage_distribution.h ../../basic_types.h \ -+ ../../base/timed/graph.h ../../base/timed/channel.h \ -+ ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/algo/repetition_vector.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/../untimed/graph.h ../throughput/throughput.h \ -+ ../throughput/selftimed_throughput.h \ -+ ../throughput/../../base/timed/graph.h ../throughput/tdma_schedule.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../throughput/deadlock.h ../throughput/static_periodic_ning_gao.h \ -+ ../throughput/../buffersizing/storage_distribution.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_buffersizing_buffer_ning_gao.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_buffersizing_buffer_ning_gao.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_buffersizing_buffer_ning_gao.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_buffersizing_buffer_ning_gao.d 2022-01-07 15:09:14.824890327 +0800 -@@ -0,0 +1,85 @@ -+sdf_analysis_buffersizing_buffer_ning_gao.o: buffer_ning_gao.cc buffer_ning_gao.h \ -+ storage_distribution.h ../../basic_types.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/algo/repetition_vector.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/../untimed/graph.h ../throughput/throughput.h \ -+ ../throughput/selftimed_throughput.h \ -+ ../throughput/../../base/timed/graph.h ../throughput/tdma_schedule.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../throughput/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../throughput/deadlock.h ../throughput/static_periodic_ning_gao.h \ -+ ../throughput/../buffersizing/storage_distribution.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_dependency_graph_dependency_graph.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_dependency_graph_dependency_graph.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_dependency_graph_dependency_graph.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_dependency_graph_dependency_graph.d 2022-01-07 15:09:16.818214536 +0800 -@@ -0,0 +1,64 @@ -+sdf_analysis_dependency_graph_dependency_graph.o: dependency_graph.cc dependency_graph.h \ -+ ../../base/timed/graph.h ../../base/timed/channel.h \ -+ ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/algo/repetition_vector.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/../untimed/graph.h ../../base/algo/components.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_latency_minimal.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_latency_minimal.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_latency_minimal.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_latency_minimal.d 2022-01-07 15:09:19.641535205 +0800 -@@ -0,0 +1,63 @@ -+sdf_analysis_latency_minimal.o: minimal.cc minimal.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/algo/repetition_vector.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/../untimed/graph.h ../../base/algo/components.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_latency_selftimed.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_latency_selftimed.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_latency_selftimed.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_latency_selftimed.d 2022-01-07 15:09:21.528193578 +0800 -@@ -0,0 +1,63 @@ -+sdf_analysis_latency_selftimed.o: selftimed.cc selftimed.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/algo/repetition_vector.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/../untimed/graph.h ../../base/algo/components.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_latency_selftimed_minimal.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_latency_selftimed_minimal.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_latency_selftimed_minimal.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_latency_selftimed_minimal.d 2022-01-07 15:09:23.151519879 +0800 -@@ -0,0 +1,64 @@ -+sdf_analysis_latency_selftimed_minimal.o: selftimed_minimal.cc selftimed_minimal.h \ -+ ../../base/timed/graph.h ../../base/timed/channel.h \ -+ ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h minimal.h \ -+ ../../base/algo/repetition_vector.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/../untimed/graph.h ../../base/algo/components.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_latency_single_processor_random_staticorder.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_latency_single_processor_random_staticorder.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_latency_single_processor_random_staticorder.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_latency_single_processor_random_staticorder.d 2022-01-07 15:09:25.034845180 +0800 -@@ -0,0 +1,65 @@ -+sdf_analysis_latency_single_processor_random_staticorder.o: \ -+ single_processor_random_staticorder.cc \ -+ single_processor_random_staticorder.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/algo/repetition_vector.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/../untimed/graph.h ../../base/algo/components.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_maxplus_mpdependencies.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_maxplus_mpdependencies.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_maxplus_mpdependencies.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_maxplus_mpdependencies.d 2022-01-07 15:09:26.511505647 +0800 -@@ -0,0 +1,67 @@ -+sdf_analysis_maxplus_mpdependencies.o: mpdependencies.cc mpdependencies.h mpexplore.h \ -+ ../../base/timed/graph.h ../../base/timed/channel.h \ -+ ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../untimed/graph.h \ -+ mpstorage.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_maxplus_mpexplore.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_maxplus_mpexplore.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_maxplus_mpexplore.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_maxplus_mpexplore.d 2022-01-07 15:09:27.674834150 +0800 -@@ -0,0 +1,66 @@ -+sdf_analysis_maxplus_mpexplore.o: mpexplore.cc mpexplore.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../untimed/graph.h \ -+ mpstorage.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_maxplus_mpstorage.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_maxplus_mpstorage.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_maxplus_mpstorage.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_maxplus_mpstorage.d 2022-01-07 15:09:29.894825070 +0800 -@@ -0,0 +1,66 @@ -+sdf_analysis_maxplus_mpstorage.o: mpstorage.cc mpstorage.h mpexplore.h \ -+ ../../base/timed/graph.h ../../base/timed/channel.h \ -+ ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/../untimed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_mcm_mcm.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_mcm_mcm.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_mcm_mcm.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_mcm_mcm.d 2022-01-07 15:09:31.721484407 +0800 -@@ -0,0 +1,65 @@ -+sdf_analysis_mcm_mcm.o: mcm.cc mcm.h ../../base/timed/graph.h ../../base/timed/channel.h \ -+ ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h mcmgraph.h \ -+ ../../base/hsdf/check.h ../../base/hsdf/../untimed/graph.h \ -+ ../../base/algo/components.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/../untimed/graph.h ../../base/algo/cycle.h \ -+ ../../base/algo/graph.h ../../base/algo/components.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_mcm_mcmdg.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_mcm_mcmdg.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_mcm_mcmdg.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_mcm_mcmdg.d 2022-01-07 15:09:32.994812698 +0800 -@@ -0,0 +1,64 @@ -+sdf_analysis_mcm_mcmdg.o: mcmdg.cc mcmgraph.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/hsdf/check.h ../../base/hsdf/../untimed/graph.h \ -+ ../../base/algo/components.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/../untimed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_mcm_mcmgraph.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_mcm_mcmgraph.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_mcm_mcmgraph.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_mcm_mcmgraph.d 2022-01-07 15:09:34.098141717 +0800 -@@ -0,0 +1,64 @@ -+sdf_analysis_mcm_mcmgraph.o: mcmgraph.cc \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ mcmgraph.h ../../base/timed/graph.h ../../base/timed/channel.h \ -+ ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/hsdf/check.h ../../base/hsdf/../untimed/graph.h mcm.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_mcm_mcmhoward.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_mcm_mcmhoward.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_mcm_mcmhoward.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_mcm_mcmhoward.d 2022-01-07 15:09:36.021467631 +0800 -@@ -0,0 +1,64 @@ -+sdf_analysis_mcm_mcmhoward.o: mcmhoward.cc mcmgraph.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/hsdf/check.h ../../base/hsdf/../untimed/graph.h \ -+ ../../base/algo/components.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/../untimed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_mcm_mcmkarp.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_mcm_mcmkarp.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_mcm_mcmkarp.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_mcm_mcmkarp.d 2022-01-07 15:09:37.268129565 +0800 -@@ -0,0 +1,64 @@ -+sdf_analysis_mcm_mcmkarp.o: mcmkarp.cc mcmgraph.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/hsdf/check.h ../../base/hsdf/../untimed/graph.h \ -+ ../../base/algo/components.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/../untimed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_mcm_mcmyto.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_mcm_mcmyto.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_mcm_mcmyto.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_mcm_mcmyto.d 2022-01-07 15:09:38.304792338 +0800 -@@ -0,0 +1,64 @@ -+sdf_analysis_mcm_mcmyto.o: mcmyto.cc mcmgraph.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/hsdf/check.h ../../base/hsdf/../untimed/graph.h \ -+ ../../base/algo/components.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/../untimed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_throughput_deadlock.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_throughput_deadlock.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_throughput_deadlock.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_throughput_deadlock.d 2022-01-07 15:09:39.868119870 +0800 -@@ -0,0 +1,63 @@ -+sdf_analysis_throughput_deadlock.o: deadlock.cc deadlock.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/algo/repetition_vector.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/../untimed/graph.h ../../base/algo/components.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_throughput_selftimed_throughput.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_throughput_selftimed_throughput.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_throughput_selftimed_throughput.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_throughput_selftimed_throughput.d 2022-01-07 15:09:41.038115587 +0800 -@@ -0,0 +1,64 @@ -+sdf_analysis_throughput_selftimed_throughput.o: selftimed_throughput.cc selftimed_throughput.h \ -+ ../../base/timed/graph.h ../../base/timed/channel.h \ -+ ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/algo/repetition_vector.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/../untimed/graph.h ../../base/algo/components.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_throughput_static_periodic_ning_gao.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_throughput_static_periodic_ning_gao.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_throughput_static_periodic_ning_gao.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_throughput_static_periodic_ning_gao.d 2022-01-07 15:09:42.561443424 +0800 -@@ -0,0 +1,65 @@ -+sdf_analysis_throughput_static_periodic_ning_gao.o: static_periodic_ning_gao.cc \ -+ static_periodic_ning_gao.h ../buffersizing/storage_distribution.h \ -+ ../buffersizing/../../basic_types.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/algo/repetition_vector.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/../untimed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_throughput_tdma_schedule.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_throughput_tdma_schedule.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_throughput_tdma_schedule.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_throughput_tdma_schedule.d 2022-01-07 15:09:44.091437981 +0800 -@@ -0,0 +1,83 @@ -+sdf_analysis_throughput_tdma_schedule.o: tdma_schedule.cc tdma_schedule.h \ -+ ../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/exception/exception.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/exception/../string/cstring.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/exception/../string/../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/exception/../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/fraction/fraction.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/fraction/../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/fraction/../math/cmath.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/fraction/../string/cstring.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/xml/xml.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/tempfile/tempfile.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/tempfile/../string/cstring.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/math/cmath.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/random/random.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/sort/sort.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/time/time.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/time/../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/time/../string/cstring.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/log/log.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/log/../string/cstring.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/log/../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/sequence/sequence.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/sequence/../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/matrix/matrix.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/matrix/../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/maxplus/maxplus.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/maxplus/mptype.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/maxplus/../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/maxplus/../string/cstring.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/maxplus/mpmatrix.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/channel.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/graph.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/channel.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/actor.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/port.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/component.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/../../../base/base.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/../../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/timed_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/actor.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/algo/repetition_vector.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/../untimed/graph.h ../../base/algo/components.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_token_communication_comm_trace.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_token_communication_comm_trace.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_analysis_token_communication_comm_trace.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_analysis_token_communication_comm_trace.d 2022-01-07 15:09:46.094764320 +0800 -@@ -0,0 +1,83 @@ -+sdf_analysis_token_communication_comm_trace.o: comm_trace.cc comm_trace.h \ -+ ../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/exception/exception.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/exception/../string/cstring.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/exception/../string/../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/exception/../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/fraction/fraction.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/fraction/../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/fraction/../math/cmath.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/fraction/../string/cstring.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/xml/xml.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/tempfile/tempfile.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/tempfile/../string/cstring.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/math/cmath.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/random/random.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/sort/sort.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/time/time.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/time/../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/time/../string/cstring.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/log/log.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/log/../string/cstring.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/log/../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/sequence/sequence.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/sequence/../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/matrix/matrix.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/matrix/../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/maxplus/maxplus.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/maxplus/mptype.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/maxplus/../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/maxplus/../string/cstring.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/maxplus/mpmatrix.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/channel.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/graph.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/channel.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/actor.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/port.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/component.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/../../../base/base.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/../../basic_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/timed_types.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/actor.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../base/algo/repetition_vector.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/../untimed/graph.h ../../base/algo/components.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_algo_acyclic.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_algo_acyclic.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_algo_acyclic.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_algo_acyclic.d 2022-01-07 15:09:48.648088950 +0800 -@@ -0,0 +1,56 @@ -+sdf_base_algo_acyclic.o: acyclic.cc acyclic.h ../untimed/graph.h ../untimed/channel.h \ -+ ../untimed/actor.h ../untimed/port.h ../untimed/component.h \ -+ ../untimed/../../../base/base.h \ -+ ../untimed/../../../base/exception/exception.h \ -+ ../untimed/../../../base/exception/../string/cstring.h \ -+ ../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../untimed/../../../base/exception/../basic_types.h \ -+ ../untimed/../../../base/fraction/fraction.h \ -+ ../untimed/../../../base/fraction/../basic_types.h \ -+ ../untimed/../../../base/fraction/../math/cmath.h \ -+ ../untimed/../../../base/fraction/../string/cstring.h \ -+ ../untimed/../../../base/xml/xml.h \ -+ ../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../untimed/../../../base/tempfile/tempfile.h \ -+ ../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../untimed/../../../base/math/cmath.h \ -+ ../untimed/../../../base/random/random.h \ -+ ../untimed/../../../base/sort/sort.h \ -+ ../untimed/../../../base/time/time.h \ -+ ../untimed/../../../base/time/../basic_types.h \ -+ ../untimed/../../../base/time/../string/cstring.h \ -+ ../untimed/../../../base/log/log.h \ -+ ../untimed/../../../base/log/../string/cstring.h \ -+ ../untimed/../../../base/log/../basic_types.h \ -+ ../untimed/../../../base/sequence/sequence.h \ -+ ../untimed/../../../base/sequence/../basic_types.h \ -+ ../untimed/../../../base/matrix/matrix.h \ -+ ../untimed/../../../base/matrix/../basic_types.h \ -+ ../untimed/../../../base/maxplus/maxplus.h \ -+ ../untimed/../../../base/maxplus/mptype.h \ -+ ../untimed/../../../base/maxplus/../basic_types.h \ -+ ../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../untimed/../../../base/lookup/clookup.h \ -+ ../untimed/../../../base/basic_types.h ../untimed/../../basic_types.h \ -+ ../untimed/../../../base/string/cstring.h \ -+ ../untimed/../../../base/xml/xml.h components.h ../../../base/base.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_algo_components.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_algo_components.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_algo_components.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_algo_components.d 2022-01-07 15:09:49.621419026 +0800 -@@ -0,0 +1,46 @@ -+sdf_base_algo_components.o: components.cc components.h ../../../base/base.h \ -+ ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h \ -+ ../untimed/graph.h ../untimed/channel.h ../untimed/actor.h \ -+ ../untimed/port.h ../untimed/component.h ../untimed/../../../base/base.h \ -+ ../untimed/../../../base/basic_types.h ../untimed/../../basic_types.h \ -+ ../untimed/../../../base/string/cstring.h \ -+ ../untimed/../../../base/xml/xml.h dfs.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_algo_connected.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_algo_connected.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_algo_connected.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_algo_connected.d 2022-01-07 15:09:50.771415220 +0800 -@@ -0,0 +1,56 @@ -+sdf_base_algo_connected.o: connected.cc connected.h ../untimed/graph.h \ -+ ../untimed/channel.h ../untimed/actor.h ../untimed/port.h \ -+ ../untimed/component.h ../untimed/../../../base/base.h \ -+ ../untimed/../../../base/exception/exception.h \ -+ ../untimed/../../../base/exception/../string/cstring.h \ -+ ../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../untimed/../../../base/exception/../basic_types.h \ -+ ../untimed/../../../base/fraction/fraction.h \ -+ ../untimed/../../../base/fraction/../basic_types.h \ -+ ../untimed/../../../base/fraction/../math/cmath.h \ -+ ../untimed/../../../base/fraction/../string/cstring.h \ -+ ../untimed/../../../base/xml/xml.h \ -+ ../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../untimed/../../../base/tempfile/tempfile.h \ -+ ../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../untimed/../../../base/math/cmath.h \ -+ ../untimed/../../../base/random/random.h \ -+ ../untimed/../../../base/sort/sort.h \ -+ ../untimed/../../../base/time/time.h \ -+ ../untimed/../../../base/time/../basic_types.h \ -+ ../untimed/../../../base/time/../string/cstring.h \ -+ ../untimed/../../../base/log/log.h \ -+ ../untimed/../../../base/log/../string/cstring.h \ -+ ../untimed/../../../base/log/../basic_types.h \ -+ ../untimed/../../../base/sequence/sequence.h \ -+ ../untimed/../../../base/sequence/../basic_types.h \ -+ ../untimed/../../../base/matrix/matrix.h \ -+ ../untimed/../../../base/matrix/../basic_types.h \ -+ ../untimed/../../../base/maxplus/maxplus.h \ -+ ../untimed/../../../base/maxplus/mptype.h \ -+ ../untimed/../../../base/maxplus/../basic_types.h \ -+ ../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../untimed/../../../base/lookup/clookup.h \ -+ ../untimed/../../../base/basic_types.h ../untimed/../../basic_types.h \ -+ ../untimed/../../../base/string/cstring.h \ -+ ../untimed/../../../base/xml/xml.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_algo_cycle.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_algo_cycle.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_algo_cycle.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_algo_cycle.d 2022-01-07 15:09:51.764745305 +0800 -@@ -0,0 +1,57 @@ -+sdf_base_algo_cycle.o: cycle.cc cycle.h ../untimed/graph.h ../untimed/channel.h \ -+ ../untimed/actor.h ../untimed/port.h ../untimed/component.h \ -+ ../untimed/../../../base/base.h \ -+ ../untimed/../../../base/exception/exception.h \ -+ ../untimed/../../../base/exception/../string/cstring.h \ -+ ../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../untimed/../../../base/exception/../basic_types.h \ -+ ../untimed/../../../base/fraction/fraction.h \ -+ ../untimed/../../../base/fraction/../basic_types.h \ -+ ../untimed/../../../base/fraction/../math/cmath.h \ -+ ../untimed/../../../base/fraction/../string/cstring.h \ -+ ../untimed/../../../base/xml/xml.h \ -+ ../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../untimed/../../../base/tempfile/tempfile.h \ -+ ../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../untimed/../../../base/math/cmath.h \ -+ ../untimed/../../../base/random/random.h \ -+ ../untimed/../../../base/sort/sort.h \ -+ ../untimed/../../../base/time/time.h \ -+ ../untimed/../../../base/time/../basic_types.h \ -+ ../untimed/../../../base/time/../string/cstring.h \ -+ ../untimed/../../../base/log/log.h \ -+ ../untimed/../../../base/log/../string/cstring.h \ -+ ../untimed/../../../base/log/../basic_types.h \ -+ ../untimed/../../../base/sequence/sequence.h \ -+ ../untimed/../../../base/sequence/../basic_types.h \ -+ ../untimed/../../../base/matrix/matrix.h \ -+ ../untimed/../../../base/matrix/../basic_types.h \ -+ ../untimed/../../../base/maxplus/maxplus.h \ -+ ../untimed/../../../base/maxplus/mptype.h \ -+ ../untimed/../../../base/maxplus/../basic_types.h \ -+ ../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../untimed/../../../base/lookup/clookup.h \ -+ ../untimed/../../../base/basic_types.h ../untimed/../../basic_types.h \ -+ ../untimed/../../../base/string/cstring.h \ -+ ../untimed/../../../base/xml/xml.h components.h ../../../base/base.h \ -+ graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_algo_dfs.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_algo_dfs.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_algo_dfs.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_algo_dfs.d 2022-01-07 15:09:53.244740530 +0800 -@@ -0,0 +1,46 @@ -+sdf_base_algo_dfs.o: dfs.cc dfs.h ../../../base/base.h \ -+ ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h \ -+ ../untimed/graph.h ../untimed/channel.h ../untimed/actor.h \ -+ ../untimed/port.h ../untimed/component.h ../untimed/../../../base/base.h \ -+ ../untimed/../../../base/basic_types.h ../untimed/../../basic_types.h \ -+ ../untimed/../../../base/string/cstring.h \ -+ ../untimed/../../../base/xml/xml.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_algo_graph.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_algo_graph.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_algo_graph.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_algo_graph.d 2022-01-07 15:09:54.284737222 +0800 -@@ -0,0 +1,46 @@ -+sdf_base_algo_graph.o: graph.cc graph.h components.h ../../../base/base.h \ -+ ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h \ -+ ../untimed/graph.h ../untimed/channel.h ../untimed/actor.h \ -+ ../untimed/port.h ../untimed/component.h ../untimed/../../../base/base.h \ -+ ../untimed/../../../base/basic_types.h ../untimed/../../basic_types.h \ -+ ../untimed/../../../base/string/cstring.h \ -+ ../untimed/../../../base/xml/xml.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_algo_repetition_vector.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_algo_repetition_vector.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_algo_repetition_vector.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_algo_repetition_vector.d 2022-01-07 15:09:55.408067025 +0800 -@@ -0,0 +1,46 @@ -+sdf_base_algo_repetition_vector.o: repetition_vector.cc repetition_vector.h \ -+ ../../../base/base.h ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h \ -+ ../untimed/graph.h ../untimed/channel.h ../untimed/actor.h \ -+ ../untimed/port.h ../untimed/component.h ../untimed/../../../base/base.h \ -+ ../untimed/../../../base/basic_types.h ../untimed/../../basic_types.h \ -+ ../untimed/../../../base/string/cstring.h \ -+ ../untimed/../../../base/xml/xml.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_hsdf_check.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_hsdf_check.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_hsdf_check.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_hsdf_check.d 2022-01-07 15:09:56.758062840 +0800 -@@ -0,0 +1,56 @@ -+sdf_base_hsdf_check.o: check.cc check.h ../untimed/graph.h ../untimed/channel.h \ -+ ../untimed/actor.h ../untimed/port.h ../untimed/component.h \ -+ ../untimed/../../../base/base.h \ -+ ../untimed/../../../base/exception/exception.h \ -+ ../untimed/../../../base/exception/../string/cstring.h \ -+ ../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../untimed/../../../base/exception/../basic_types.h \ -+ ../untimed/../../../base/fraction/fraction.h \ -+ ../untimed/../../../base/fraction/../basic_types.h \ -+ ../untimed/../../../base/fraction/../math/cmath.h \ -+ ../untimed/../../../base/fraction/../string/cstring.h \ -+ ../untimed/../../../base/xml/xml.h \ -+ ../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../untimed/../../../base/tempfile/tempfile.h \ -+ ../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../untimed/../../../base/math/cmath.h \ -+ ../untimed/../../../base/random/random.h \ -+ ../untimed/../../../base/sort/sort.h \ -+ ../untimed/../../../base/time/time.h \ -+ ../untimed/../../../base/time/../basic_types.h \ -+ ../untimed/../../../base/time/../string/cstring.h \ -+ ../untimed/../../../base/log/log.h \ -+ ../untimed/../../../base/log/../string/cstring.h \ -+ ../untimed/../../../base/log/../basic_types.h \ -+ ../untimed/../../../base/sequence/sequence.h \ -+ ../untimed/../../../base/sequence/../basic_types.h \ -+ ../untimed/../../../base/matrix/matrix.h \ -+ ../untimed/../../../base/matrix/../basic_types.h \ -+ ../untimed/../../../base/maxplus/maxplus.h \ -+ ../untimed/../../../base/maxplus/mptype.h \ -+ ../untimed/../../../base/maxplus/../basic_types.h \ -+ ../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../untimed/../../../base/lookup/clookup.h \ -+ ../untimed/../../../base/basic_types.h ../untimed/../../basic_types.h \ -+ ../untimed/../../../base/string/cstring.h \ -+ ../untimed/../../../base/xml/xml.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_timed_actor.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_timed_actor.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_timed_actor.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_timed_actor.d 2022-01-07 15:09:57.931392586 +0800 -@@ -0,0 +1,56 @@ -+sdf_base_timed_actor.o: actor.cc actor.h ../untimed/graph.h ../untimed/channel.h \ -+ ../untimed/actor.h ../untimed/port.h ../untimed/component.h \ -+ ../untimed/../../../base/base.h \ -+ ../untimed/../../../base/exception/exception.h \ -+ ../untimed/../../../base/exception/../string/cstring.h \ -+ ../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../untimed/../../../base/exception/../basic_types.h \ -+ ../untimed/../../../base/fraction/fraction.h \ -+ ../untimed/../../../base/fraction/../basic_types.h \ -+ ../untimed/../../../base/fraction/../math/cmath.h \ -+ ../untimed/../../../base/fraction/../string/cstring.h \ -+ ../untimed/../../../base/xml/xml.h \ -+ ../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../untimed/../../../base/tempfile/tempfile.h \ -+ ../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../untimed/../../../base/math/cmath.h \ -+ ../untimed/../../../base/random/random.h \ -+ ../untimed/../../../base/sort/sort.h \ -+ ../untimed/../../../base/time/time.h \ -+ ../untimed/../../../base/time/../basic_types.h \ -+ ../untimed/../../../base/time/../string/cstring.h \ -+ ../untimed/../../../base/log/log.h \ -+ ../untimed/../../../base/log/../string/cstring.h \ -+ ../untimed/../../../base/log/../basic_types.h \ -+ ../untimed/../../../base/sequence/sequence.h \ -+ ../untimed/../../../base/sequence/../basic_types.h \ -+ ../untimed/../../../base/matrix/matrix.h \ -+ ../untimed/../../../base/matrix/../basic_types.h \ -+ ../untimed/../../../base/maxplus/maxplus.h \ -+ ../untimed/../../../base/maxplus/mptype.h \ -+ ../untimed/../../../base/maxplus/../basic_types.h \ -+ ../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../untimed/../../../base/lookup/clookup.h \ -+ ../untimed/../../../base/basic_types.h ../untimed/../../basic_types.h \ -+ ../untimed/../../../base/string/cstring.h \ -+ ../untimed/../../../base/xml/xml.h timed_types.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_timed_channel.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_timed_channel.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_timed_channel.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_timed_channel.d 2022-01-07 15:09:59.088055767 +0800 -@@ -0,0 +1,56 @@ -+sdf_base_timed_channel.o: channel.cc channel.h ../untimed/graph.h ../untimed/channel.h \ -+ ../untimed/actor.h ../untimed/port.h ../untimed/component.h \ -+ ../untimed/../../../base/base.h \ -+ ../untimed/../../../base/exception/exception.h \ -+ ../untimed/../../../base/exception/../string/cstring.h \ -+ ../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../untimed/../../../base/exception/../basic_types.h \ -+ ../untimed/../../../base/fraction/fraction.h \ -+ ../untimed/../../../base/fraction/../basic_types.h \ -+ ../untimed/../../../base/fraction/../math/cmath.h \ -+ ../untimed/../../../base/fraction/../string/cstring.h \ -+ ../untimed/../../../base/xml/xml.h \ -+ ../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../untimed/../../../base/tempfile/tempfile.h \ -+ ../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../untimed/../../../base/math/cmath.h \ -+ ../untimed/../../../base/random/random.h \ -+ ../untimed/../../../base/sort/sort.h \ -+ ../untimed/../../../base/time/time.h \ -+ ../untimed/../../../base/time/../basic_types.h \ -+ ../untimed/../../../base/time/../string/cstring.h \ -+ ../untimed/../../../base/log/log.h \ -+ ../untimed/../../../base/log/../string/cstring.h \ -+ ../untimed/../../../base/log/../basic_types.h \ -+ ../untimed/../../../base/sequence/sequence.h \ -+ ../untimed/../../../base/sequence/../basic_types.h \ -+ ../untimed/../../../base/matrix/matrix.h \ -+ ../untimed/../../../base/matrix/../basic_types.h \ -+ ../untimed/../../../base/maxplus/maxplus.h \ -+ ../untimed/../../../base/maxplus/mptype.h \ -+ ../untimed/../../../base/maxplus/../basic_types.h \ -+ ../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../untimed/../../../base/lookup/clookup.h \ -+ ../untimed/../../../base/basic_types.h ../untimed/../../basic_types.h \ -+ ../untimed/../../../base/string/cstring.h \ -+ ../untimed/../../../base/xml/xml.h timed_types.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_timed_graph.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_timed_graph.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_timed_graph.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_timed_graph.d 2022-01-07 15:10:00.141385967 +0800 -@@ -0,0 +1,56 @@ -+sdf_base_timed_graph.o: graph.cc graph.h channel.h ../untimed/graph.h \ -+ ../untimed/channel.h ../untimed/actor.h ../untimed/port.h \ -+ ../untimed/component.h ../untimed/../../../base/base.h \ -+ ../untimed/../../../base/exception/exception.h \ -+ ../untimed/../../../base/exception/../string/cstring.h \ -+ ../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../untimed/../../../base/exception/../basic_types.h \ -+ ../untimed/../../../base/fraction/fraction.h \ -+ ../untimed/../../../base/fraction/../basic_types.h \ -+ ../untimed/../../../base/fraction/../math/cmath.h \ -+ ../untimed/../../../base/fraction/../string/cstring.h \ -+ ../untimed/../../../base/xml/xml.h \ -+ ../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../untimed/../../../base/tempfile/tempfile.h \ -+ ../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../untimed/../../../base/math/cmath.h \ -+ ../untimed/../../../base/random/random.h \ -+ ../untimed/../../../base/sort/sort.h \ -+ ../untimed/../../../base/time/time.h \ -+ ../untimed/../../../base/time/../basic_types.h \ -+ ../untimed/../../../base/time/../string/cstring.h \ -+ ../untimed/../../../base/log/log.h \ -+ ../untimed/../../../base/log/../string/cstring.h \ -+ ../untimed/../../../base/log/../basic_types.h \ -+ ../untimed/../../../base/sequence/sequence.h \ -+ ../untimed/../../../base/sequence/../basic_types.h \ -+ ../untimed/../../../base/matrix/matrix.h \ -+ ../untimed/../../../base/matrix/../basic_types.h \ -+ ../untimed/../../../base/maxplus/maxplus.h \ -+ ../untimed/../../../base/maxplus/mptype.h \ -+ ../untimed/../../../base/maxplus/../basic_types.h \ -+ ../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../untimed/../../../base/lookup/clookup.h \ -+ ../untimed/../../../base/basic_types.h ../untimed/../../basic_types.h \ -+ ../untimed/../../../base/string/cstring.h \ -+ ../untimed/../../../base/xml/xml.h timed_types.h actor.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_untimed_actor.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_untimed_actor.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_untimed_actor.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_untimed_actor.d 2022-01-07 15:10:01.471382067 +0800 -@@ -0,0 +1,43 @@ -+sdf_base_untimed_actor.o: actor.cc actor.h port.h component.h ../../../base/base.h \ -+ ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h \ -+ ../../../base/basic_types.h ../../basic_types.h \ -+ ../../../base/string/cstring.h ../../../base/xml/xml.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_untimed_channel.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_untimed_channel.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_untimed_channel.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_untimed_channel.d 2022-01-07 15:10:02.578045534 +0800 -@@ -0,0 +1,43 @@ -+sdf_base_untimed_channel.o: channel.cc channel.h actor.h port.h component.h \ -+ ../../../base/base.h ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h \ -+ ../../../base/basic_types.h ../../basic_types.h \ -+ ../../../base/string/cstring.h ../../../base/xml/xml.h graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_untimed_component.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_untimed_component.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_untimed_component.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_untimed_component.d 2022-01-07 15:10:03.671375747 +0800 -@@ -0,0 +1,43 @@ -+sdf_base_untimed_component.o: component.cc component.h ../../../base/base.h \ -+ ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h \ -+ ../../../base/basic_types.h ../../basic_types.h \ -+ ../../../base/string/cstring.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_untimed_graph.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_untimed_graph.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_untimed_graph.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_untimed_graph.d 2022-01-07 15:10:04.641373015 +0800 -@@ -0,0 +1,43 @@ -+sdf_base_untimed_graph.o: graph.cc graph.h channel.h actor.h port.h component.h \ -+ ../../../base/base.h ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h \ -+ ../../../base/basic_types.h ../../basic_types.h \ -+ ../../../base/string/cstring.h ../../../base/xml/xml.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_untimed_port.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_untimed_port.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_base_untimed_port.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_base_untimed_port.d 2022-01-07 15:10:05.894702864 +0800 -@@ -0,0 +1,43 @@ -+sdf_base_untimed_port.o: port.cc port.h component.h ../../../base/base.h \ -+ ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h \ -+ ../../../base/basic_types.h ../../basic_types.h \ -+ ../../../base/string/cstring.h ../../../base/xml/xml.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_generate_generate.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_generate_generate.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_generate_generate.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_generate_generate.d 2022-01-07 15:10:07.144699445 +0800 -@@ -0,0 +1,119 @@ -+sdf_generate_generate.o: generate.cc \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ generate.h ../base/timed/graph.h ../base/timed/channel.h \ -+ ../base/timed/../untimed/graph.h ../base/timed/../untimed/channel.h \ -+ ../base/timed/../untimed/actor.h ../base/timed/../untimed/port.h \ -+ ../base/timed/../untimed/component.h \ -+ ../base/timed/../untimed/../../../base/base.h \ -+ ../base/timed/../untimed/../../../base/basic_types.h \ -+ ../base/timed/../untimed/../../basic_types.h \ -+ ../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../base/timed/timed_types.h ../base/timed/actor.h ../base/algo/cycle.h \ -+ ../base/algo/../untimed/graph.h ../base/algo/graph.h \ -+ ../base/algo/components.h ../base/algo/../../../base/base.h \ -+ ../analysis/analysis.h ../analysis/buffersizing/buffersizing.h \ -+ ../analysis/buffersizing/buffer.h \ -+ ../analysis/buffersizing/storage_distribution.h \ -+ ../analysis/buffersizing/../../basic_types.h \ -+ ../analysis/buffersizing/../../base/timed/graph.h \ -+ ../analysis/buffersizing/bounded_buffer.h \ -+ ../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../analysis/buffersizing/buffer_ning_gao.h \ -+ ../analysis/dependency_graph/dependency_graph.h \ -+ ../analysis/dependency_graph/../../base/timed/graph.h \ -+ ../analysis/latency/latency.h \ -+ ../analysis/latency/../../base/algo/components.h \ -+ ../analysis/latency/../../base/algo/repetition_vector.h \ -+ ../analysis/latency/../../base/algo/../../../base/base.h \ -+ ../analysis/latency/../../base/algo/../untimed/graph.h \ -+ ../analysis/latency/minimal.h \ -+ ../analysis/latency/../../base/timed/graph.h \ -+ ../analysis/latency/selftimed.h ../analysis/latency/selftimed_minimal.h \ -+ ../analysis/latency/single_processor_random_staticorder.h \ -+ ../analysis/mcm/mcm.h ../analysis/mcm/../../base/timed/graph.h \ -+ ../analysis/mcm/mcmgraph.h ../analysis/throughput/throughput.h \ -+ ../analysis/throughput/selftimed_throughput.h \ -+ ../analysis/throughput/../../base/timed/graph.h \ -+ ../analysis/throughput/tdma_schedule.h \ -+ ../analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../analysis/throughput/deadlock.h \ -+ ../analysis/throughput/static_periodic_ning_gao.h \ -+ ../analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../analysis/token_communication/comm_trace.h \ -+ ../analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../analysis/maxplus/mpexplore.h \ -+ ../analysis/maxplus/../../base/timed/graph.h \ -+ ../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../transform/hsdf/hsdf.h ../transform/hsdf/../../base/untimed/graph.h \ -+ ../transform/model/buffersize.h \ -+ ../transform/model/../../base/timed/graph.h \ -+ ../transform/model/autoconc.h \ -+ ../transform/model/../../base/untimed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_output_buffer_throughput_buffy_autoconc.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_output_buffer_throughput_buffy_autoconc.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_output_buffer_throughput_buffy_autoconc.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_output_buffer_throughput_buffy_autoconc.d 2022-01-07 15:10:10.254691174 +0800 -@@ -0,0 +1,63 @@ -+sdf_output_buffer_throughput_buffy_autoconc.o: buffy_autoconc.cc buffy.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/algo/repetition_vector.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/../untimed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_output_buffer_throughput_buffy.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_output_buffer_throughput_buffy.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_output_buffer_throughput_buffy.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_output_buffer_throughput_buffy.d 2022-01-07 15:10:12.761351415 +0800 -@@ -0,0 +1,63 @@ -+sdf_output_buffer_throughput_buffy.o: buffy.cc buffy.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/algo/repetition_vector.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/../untimed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_output_dot_dot.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_output_dot_dot.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_output_dot_dot.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_output_dot_dot.d 2022-01-07 15:10:15.761344006 +0800 -@@ -0,0 +1,58 @@ -+sdf_output_dot_dot.o: dot.cc dot.h ../../base/untimed/graph.h \ -+ ../../base/untimed/channel.h ../../base/untimed/actor.h \ -+ ../../base/untimed/port.h ../../base/untimed/component.h \ -+ ../../base/untimed/../../../base/base.h \ -+ ../../base/untimed/../../../base/exception/exception.h \ -+ ../../base/untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/untimed/../../../base/exception/../basic_types.h \ -+ ../../base/untimed/../../../base/fraction/fraction.h \ -+ ../../base/untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/untimed/../../../base/xml/xml.h \ -+ ../../base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/untimed/../../../base/math/cmath.h \ -+ ../../base/untimed/../../../base/random/random.h \ -+ ../../base/untimed/../../../base/sort/sort.h \ -+ ../../base/untimed/../../../base/time/time.h \ -+ ../../base/untimed/../../../base/time/../basic_types.h \ -+ ../../base/untimed/../../../base/time/../string/cstring.h \ -+ ../../base/untimed/../../../base/log/log.h \ -+ ../../base/untimed/../../../base/log/../string/cstring.h \ -+ ../../base/untimed/../../../base/log/../basic_types.h \ -+ ../../base/untimed/../../../base/sequence/sequence.h \ -+ ../../base/untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/untimed/../../../base/matrix/matrix.h \ -+ ../../base/untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/untimed/../../../base/maxplus/mptype.h \ -+ ../../base/untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/untimed/../../../base/lookup/clookup.h \ -+ ../../base/untimed/../../../base/basic_types.h \ -+ ../../base/untimed/../../basic_types.h \ -+ ../../base/untimed/../../../base/string/cstring.h \ -+ ../../base/untimed/../../../base/xml/xml.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_output_hapi_hapi.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_output_hapi_hapi.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_output_hapi_hapi.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_output_hapi_hapi.d 2022-01-07 15:10:17.021340983 +0800 -@@ -0,0 +1,61 @@ -+sdf_output_hapi_hapi.o: hapi.cc hapi.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_output_html_html.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_output_html_html.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_output_html_html.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_output_html_html.d 2022-01-07 15:10:18.911336554 +0800 -@@ -0,0 +1,88 @@ -+sdf_output_html_html.o: html.cc html.h ../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../resource_allocation/mpsoc_arch/tile.h \ -+ ../../resource_allocation/mpsoc_arch/connection.h \ -+ ../../resource_allocation/mpsoc_arch/component.h \ -+ ../../resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/base.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/exception/exception.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/exception/../string/cstring.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/exception/../string/../basic_types.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/exception/../basic_types.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/fraction/fraction.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/fraction/../basic_types.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/fraction/../math/cmath.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/fraction/../string/cstring.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/xml/xml.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/tempfile/tempfile.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/tempfile/../string/cstring.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/math/cmath.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/random/random.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/sort/sort.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/time/time.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/time/../basic_types.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/time/../string/cstring.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/log/log.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/log/../string/cstring.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/log/../basic_types.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/sequence/sequence.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/sequence/../basic_types.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/matrix/matrix.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/matrix/../basic_types.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/maxplus/maxplus.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/maxplus/mptype.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/maxplus/../basic_types.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/maxplus/../string/cstring.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/maxplus/mpmatrix.h \ -+ ../../resource_allocation/mpsoc_arch/../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../resource_allocation/mpsoc_arch/binding.h \ -+ ../../resource_allocation/mpsoc_arch/../../base/timed/graph.h \ -+ ../../resource_allocation/mpsoc_arch/../../base/timed/channel.h \ -+ ../../resource_allocation/mpsoc_arch/../../base/timed/../untimed/graph.h \ -+ ../../resource_allocation/mpsoc_arch/../../base/timed/../untimed/channel.h \ -+ ../../resource_allocation/mpsoc_arch/../../base/timed/../untimed/actor.h \ -+ ../../resource_allocation/mpsoc_arch/../../base/timed/../untimed/port.h \ -+ ../../resource_allocation/mpsoc_arch/../../base/timed/../untimed/component.h \ -+ ../../resource_allocation/mpsoc_arch/../../base/timed/../untimed/../../../base/base.h \ -+ ../../resource_allocation/mpsoc_arch/../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../resource_allocation/mpsoc_arch/../../base/timed/../untimed/../../basic_types.h \ -+ ../../resource_allocation/mpsoc_arch/../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../resource_allocation/mpsoc_arch/../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../resource_allocation/mpsoc_arch/../../base/timed/timed_types.h \ -+ ../../resource_allocation/mpsoc_arch/../../base/timed/actor.h \ -+ ../../resource_allocation/mpsoc_arch/processor.h \ -+ ../../resource_allocation/mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../resource_allocation/mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../resource_allocation/mpsoc_arch/memory.h \ -+ ../../resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../resource_allocation/noc_allocation/problem/route.h ../dot/dot.h \ -+ ../dot/../../base/untimed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_output_schedule_schedule.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_output_schedule_schedule.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_output_schedule_schedule.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_output_schedule_schedule.d 2022-01-07 15:10:22.541328386 +0800 -@@ -0,0 +1,61 @@ -+sdf_output_schedule_schedule.o: schedule.cc schedule.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_output_xml_xml.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_output_xml_xml.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_output_xml_xml.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_output_xml_xml.d 2022-01-07 15:10:24.171324859 +0800 -@@ -0,0 +1,61 @@ -+sdf_output_xml_xml.o: xml.cc xml.h ../../base/timed/graph.h ../../base/timed/channel.h \ -+ ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_binding_aware_sdfg_binding_aware_sdfg.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_binding_aware_sdfg_binding_aware_sdfg.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_binding_aware_sdfg_binding_aware_sdfg.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_binding_aware_sdfg_binding_aware_sdfg.d 2022-01-07 15:10:25.531321988 +0800 -@@ -0,0 +1,73 @@ -+sdf_resource_allocation_binding_aware_sdfg_binding_aware_sdfg.o: binding_aware_sdfg.cc binding_aware_sdfg.h \ -+ ../flow/types.h ../mpsoc_arch/graph.h ../mpsoc_arch/tile.h \ -+ ../mpsoc_arch/connection.h ../mpsoc_arch/component.h \ -+ ../mpsoc_arch/arch_types.h ../mpsoc_arch/../../../base/base.h \ -+ ../mpsoc_arch/../../../base/exception/exception.h \ -+ ../mpsoc_arch/../../../base/exception/../string/cstring.h \ -+ ../mpsoc_arch/../../../base/exception/../string/../basic_types.h \ -+ ../mpsoc_arch/../../../base/exception/../basic_types.h \ -+ ../mpsoc_arch/../../../base/fraction/fraction.h \ -+ ../mpsoc_arch/../../../base/fraction/../basic_types.h \ -+ ../mpsoc_arch/../../../base/fraction/../math/cmath.h \ -+ ../mpsoc_arch/../../../base/fraction/../string/cstring.h \ -+ ../mpsoc_arch/../../../base/xml/xml.h \ -+ ../mpsoc_arch/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../mpsoc_arch/../../../base/tempfile/tempfile.h \ -+ ../mpsoc_arch/../../../base/tempfile/../string/cstring.h \ -+ ../mpsoc_arch/../../../base/math/cmath.h \ -+ ../mpsoc_arch/../../../base/random/random.h \ -+ ../mpsoc_arch/../../../base/sort/sort.h \ -+ ../mpsoc_arch/../../../base/time/time.h \ -+ ../mpsoc_arch/../../../base/time/../basic_types.h \ -+ ../mpsoc_arch/../../../base/time/../string/cstring.h \ -+ ../mpsoc_arch/../../../base/log/log.h \ -+ ../mpsoc_arch/../../../base/log/../string/cstring.h \ -+ ../mpsoc_arch/../../../base/log/../basic_types.h \ -+ ../mpsoc_arch/../../../base/sequence/sequence.h \ -+ ../mpsoc_arch/../../../base/sequence/../basic_types.h \ -+ ../mpsoc_arch/../../../base/matrix/matrix.h \ -+ ../mpsoc_arch/../../../base/matrix/../basic_types.h \ -+ ../mpsoc_arch/../../../base/maxplus/maxplus.h \ -+ ../mpsoc_arch/../../../base/maxplus/mptype.h \ -+ ../mpsoc_arch/../../../base/maxplus/../basic_types.h \ -+ ../mpsoc_arch/../../../base/maxplus/../string/cstring.h \ -+ ../mpsoc_arch/../../../base/maxplus/mpmatrix.h \ -+ ../mpsoc_arch/../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../mpsoc_arch/binding.h ../mpsoc_arch/../../base/timed/graph.h \ -+ ../mpsoc_arch/../../base/timed/channel.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/graph.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/channel.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/actor.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/port.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/component.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/../../../base/base.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/../../basic_types.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../mpsoc_arch/../../base/timed/timed_types.h \ -+ ../mpsoc_arch/../../base/timed/actor.h ../mpsoc_arch/processor.h \ -+ ../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../mpsoc_arch/memory.h ../mpsoc_arch/networkinterface.h \ -+ ../../base/timed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_flow_constraint.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_flow_constraint.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_flow_constraint.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_flow_constraint.d 2022-01-07 15:10:27.657984285 +0800 -@@ -0,0 +1,138 @@ -+sdf_resource_allocation_flow_constraint.o: constraint.cc flow.h ../tile_allocation/binding.h \ -+ ../tile_allocation/../mpsoc_arch/graph.h \ -+ ../tile_allocation/../mpsoc_arch/tile.h \ -+ ../tile_allocation/../mpsoc_arch/connection.h \ -+ ../tile_allocation/../mpsoc_arch/component.h \ -+ ../tile_allocation/../mpsoc_arch/arch_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/base.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/exception/exception.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/exception/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/exception/../string/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/exception/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/fraction/fraction.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/fraction/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/fraction/../math/cmath.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/fraction/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/xml/xml.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/tempfile/tempfile.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/tempfile/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/math/cmath.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/random/random.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/sort/sort.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/time/time.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/time/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/time/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/log/log.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/log/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/log/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/sequence/sequence.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/sequence/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/matrix/matrix.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/matrix/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/maxplus.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/mptype.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/mpmatrix.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/binding.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/graph.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/channel.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/graph.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/channel.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/actor.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/port.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/component.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../../base/base.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/timed_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/actor.h \ -+ ../tile_allocation/../mpsoc_arch/processor.h \ -+ ../tile_allocation/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../tile_allocation/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../tile_allocation/../mpsoc_arch/memory.h \ -+ ../tile_allocation/../mpsoc_arch/networkinterface.h \ -+ ../tile_allocation/../../analysis/analysis.h \ -+ ../tile_allocation/../../analysis/buffersizing/buffersizing.h \ -+ ../tile_allocation/../../analysis/buffersizing/buffer.h \ -+ ../tile_allocation/../../analysis/buffersizing/storage_distribution.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../basic_types.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/buffersizing/bounded_buffer.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/buffersizing/buffer_ning_gao.h \ -+ ../tile_allocation/../../analysis/dependency_graph/dependency_graph.h \ -+ ../tile_allocation/../../analysis/dependency_graph/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/latency/latency.h \ -+ ../tile_allocation/../../analysis/latency/../../base/algo/components.h \ -+ ../tile_allocation/../../analysis/latency/../../base/algo/../../../base/base.h \ -+ ../tile_allocation/../../analysis/latency/../../base/algo/../untimed/graph.h \ -+ ../tile_allocation/../../analysis/latency/../../base/algo/repetition_vector.h \ -+ ../tile_allocation/../../analysis/latency/minimal.h \ -+ ../tile_allocation/../../analysis/latency/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/latency/selftimed.h \ -+ ../tile_allocation/../../analysis/latency/selftimed_minimal.h \ -+ ../tile_allocation/../../analysis/latency/single_processor_random_staticorder.h \ -+ ../tile_allocation/../../analysis/mcm/mcm.h \ -+ ../tile_allocation/../../analysis/mcm/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/mcm/mcmgraph.h \ -+ ../tile_allocation/../../analysis/throughput/throughput.h \ -+ ../tile_allocation/../../analysis/throughput/selftimed_throughput.h \ -+ ../tile_allocation/../../analysis/throughput/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/throughput/tdma_schedule.h \ -+ ../tile_allocation/../../analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../tile_allocation/../../analysis/throughput/deadlock.h \ -+ ../tile_allocation/../../analysis/throughput/static_periodic_ning_gao.h \ -+ ../tile_allocation/../../analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../tile_allocation/../../analysis/token_communication/comm_trace.h \ -+ ../tile_allocation/../../analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../tile_allocation/../../analysis/maxplus/mpexplore.h \ -+ ../tile_allocation/../../analysis/maxplus/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../noc_allocation/mapping/nocmapping.h \ -+ ../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/problem.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/schedulingentity.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/message.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/interconnect_graph.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/link.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/slot.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/../../../basic_types.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/../../../../base/base.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/node.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/route.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/packet.h \ -+ ../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../noc_allocation/mapping/../../flow/types.h ../../analysis/analysis.h \ -+ ../../base/algo/cycle.h ../../base/algo/../untimed/graph.h \ -+ ../../transform/model/buffersize.h \ -+ ../../transform/model/../../base/timed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_flow_flow.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_flow_flow.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_flow_flow.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_flow_flow.d 2022-01-07 15:10:29.261314422 +0800 -@@ -0,0 +1,139 @@ -+sdf_resource_allocation_flow_flow.o: flow.cc flow.h ../tile_allocation/binding.h \ -+ ../tile_allocation/../mpsoc_arch/graph.h \ -+ ../tile_allocation/../mpsoc_arch/tile.h \ -+ ../tile_allocation/../mpsoc_arch/connection.h \ -+ ../tile_allocation/../mpsoc_arch/component.h \ -+ ../tile_allocation/../mpsoc_arch/arch_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/base.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/exception/exception.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/exception/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/exception/../string/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/exception/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/fraction/fraction.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/fraction/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/fraction/../math/cmath.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/fraction/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/xml/xml.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/tempfile/tempfile.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/tempfile/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/math/cmath.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/random/random.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/sort/sort.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/time/time.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/time/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/time/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/log/log.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/log/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/log/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/sequence/sequence.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/sequence/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/matrix/matrix.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/matrix/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/maxplus.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/mptype.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/mpmatrix.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/binding.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/graph.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/channel.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/graph.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/channel.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/actor.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/port.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/component.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../../base/base.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/timed_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/actor.h \ -+ ../tile_allocation/../mpsoc_arch/processor.h \ -+ ../tile_allocation/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../tile_allocation/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../tile_allocation/../mpsoc_arch/memory.h \ -+ ../tile_allocation/../mpsoc_arch/networkinterface.h \ -+ ../tile_allocation/../../analysis/analysis.h \ -+ ../tile_allocation/../../analysis/buffersizing/buffersizing.h \ -+ ../tile_allocation/../../analysis/buffersizing/buffer.h \ -+ ../tile_allocation/../../analysis/buffersizing/storage_distribution.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../basic_types.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/buffersizing/bounded_buffer.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/buffersizing/buffer_ning_gao.h \ -+ ../tile_allocation/../../analysis/dependency_graph/dependency_graph.h \ -+ ../tile_allocation/../../analysis/dependency_graph/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/latency/latency.h \ -+ ../tile_allocation/../../analysis/latency/../../base/algo/components.h \ -+ ../tile_allocation/../../analysis/latency/../../base/algo/../../../base/base.h \ -+ ../tile_allocation/../../analysis/latency/../../base/algo/../untimed/graph.h \ -+ ../tile_allocation/../../analysis/latency/../../base/algo/repetition_vector.h \ -+ ../tile_allocation/../../analysis/latency/minimal.h \ -+ ../tile_allocation/../../analysis/latency/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/latency/selftimed.h \ -+ ../tile_allocation/../../analysis/latency/selftimed_minimal.h \ -+ ../tile_allocation/../../analysis/latency/single_processor_random_staticorder.h \ -+ ../tile_allocation/../../analysis/mcm/mcm.h \ -+ ../tile_allocation/../../analysis/mcm/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/mcm/mcmgraph.h \ -+ ../tile_allocation/../../analysis/throughput/throughput.h \ -+ ../tile_allocation/../../analysis/throughput/selftimed_throughput.h \ -+ ../tile_allocation/../../analysis/throughput/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/throughput/tdma_schedule.h \ -+ ../tile_allocation/../../analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../tile_allocation/../../analysis/throughput/deadlock.h \ -+ ../tile_allocation/../../analysis/throughput/static_periodic_ning_gao.h \ -+ ../tile_allocation/../../analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../tile_allocation/../../analysis/token_communication/comm_trace.h \ -+ ../tile_allocation/../../analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../tile_allocation/../../analysis/maxplus/mpexplore.h \ -+ ../tile_allocation/../../analysis/maxplus/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../noc_allocation/mapping/nocmapping.h \ -+ ../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/problem.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/schedulingentity.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/message.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/interconnect_graph.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/link.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/slot.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/../../../basic_types.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/../../../../base/base.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/node.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/route.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/packet.h \ -+ ../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../noc_allocation/mapping/../../flow/types.h ../mpsoc_arch/xml.h \ -+ ../mpsoc_arch/graph.h ../../output/xml/xml.h \ -+ ../../output/xml/../../base/timed/graph.h ../../output/html/html.h \ -+ ../../output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/problem.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_flow_memory.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_flow_memory.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_flow_memory.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_flow_memory.d 2022-01-07 15:10:30.664645029 +0800 -@@ -0,0 +1,135 @@ -+sdf_resource_allocation_flow_memory.o: memory.cc flow.h ../tile_allocation/binding.h \ -+ ../tile_allocation/../mpsoc_arch/graph.h \ -+ ../tile_allocation/../mpsoc_arch/tile.h \ -+ ../tile_allocation/../mpsoc_arch/connection.h \ -+ ../tile_allocation/../mpsoc_arch/component.h \ -+ ../tile_allocation/../mpsoc_arch/arch_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/base.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/exception/exception.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/exception/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/exception/../string/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/exception/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/fraction/fraction.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/fraction/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/fraction/../math/cmath.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/fraction/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/xml/xml.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/tempfile/tempfile.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/tempfile/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/math/cmath.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/random/random.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/sort/sort.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/time/time.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/time/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/time/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/log/log.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/log/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/log/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/sequence/sequence.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/sequence/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/matrix/matrix.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/matrix/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/maxplus.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/mptype.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/mpmatrix.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/binding.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/graph.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/channel.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/graph.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/channel.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/actor.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/port.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/component.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../../base/base.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/timed_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/actor.h \ -+ ../tile_allocation/../mpsoc_arch/processor.h \ -+ ../tile_allocation/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../tile_allocation/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../tile_allocation/../mpsoc_arch/memory.h \ -+ ../tile_allocation/../mpsoc_arch/networkinterface.h \ -+ ../tile_allocation/../../analysis/analysis.h \ -+ ../tile_allocation/../../analysis/buffersizing/buffersizing.h \ -+ ../tile_allocation/../../analysis/buffersizing/buffer.h \ -+ ../tile_allocation/../../analysis/buffersizing/storage_distribution.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../basic_types.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/buffersizing/bounded_buffer.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/buffersizing/buffer_ning_gao.h \ -+ ../tile_allocation/../../analysis/dependency_graph/dependency_graph.h \ -+ ../tile_allocation/../../analysis/dependency_graph/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/latency/latency.h \ -+ ../tile_allocation/../../analysis/latency/../../base/algo/components.h \ -+ ../tile_allocation/../../analysis/latency/../../base/algo/../../../base/base.h \ -+ ../tile_allocation/../../analysis/latency/../../base/algo/../untimed/graph.h \ -+ ../tile_allocation/../../analysis/latency/../../base/algo/repetition_vector.h \ -+ ../tile_allocation/../../analysis/latency/minimal.h \ -+ ../tile_allocation/../../analysis/latency/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/latency/selftimed.h \ -+ ../tile_allocation/../../analysis/latency/selftimed_minimal.h \ -+ ../tile_allocation/../../analysis/latency/single_processor_random_staticorder.h \ -+ ../tile_allocation/../../analysis/mcm/mcm.h \ -+ ../tile_allocation/../../analysis/mcm/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/mcm/mcmgraph.h \ -+ ../tile_allocation/../../analysis/throughput/throughput.h \ -+ ../tile_allocation/../../analysis/throughput/selftimed_throughput.h \ -+ ../tile_allocation/../../analysis/throughput/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/throughput/tdma_schedule.h \ -+ ../tile_allocation/../../analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../tile_allocation/../../analysis/throughput/deadlock.h \ -+ ../tile_allocation/../../analysis/throughput/static_periodic_ning_gao.h \ -+ ../tile_allocation/../../analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../tile_allocation/../../analysis/token_communication/comm_trace.h \ -+ ../tile_allocation/../../analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../tile_allocation/../../analysis/maxplus/mpexplore.h \ -+ ../tile_allocation/../../analysis/maxplus/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../noc_allocation/mapping/nocmapping.h \ -+ ../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/problem.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/schedulingentity.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/message.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/interconnect_graph.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/link.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/slot.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/../../../basic_types.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/../../../../base/base.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/node.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/route.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/packet.h \ -+ ../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../noc_allocation/mapping/../../flow/types.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_flow_noc.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_flow_noc.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_flow_noc.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_flow_noc.d 2022-01-07 15:10:32.057975717 +0800 -@@ -0,0 +1,135 @@ -+sdf_resource_allocation_flow_noc.o: noc.cc flow.h ../tile_allocation/binding.h \ -+ ../tile_allocation/../mpsoc_arch/graph.h \ -+ ../tile_allocation/../mpsoc_arch/tile.h \ -+ ../tile_allocation/../mpsoc_arch/connection.h \ -+ ../tile_allocation/../mpsoc_arch/component.h \ -+ ../tile_allocation/../mpsoc_arch/arch_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/base.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/exception/exception.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/exception/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/exception/../string/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/exception/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/fraction/fraction.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/fraction/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/fraction/../math/cmath.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/fraction/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/xml/xml.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/tempfile/tempfile.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/tempfile/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/math/cmath.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/random/random.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/sort/sort.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/time/time.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/time/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/time/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/log/log.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/log/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/log/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/sequence/sequence.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/sequence/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/matrix/matrix.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/matrix/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/maxplus.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/mptype.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/mpmatrix.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/binding.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/graph.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/channel.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/graph.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/channel.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/actor.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/port.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/component.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../../base/base.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/timed_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/actor.h \ -+ ../tile_allocation/../mpsoc_arch/processor.h \ -+ ../tile_allocation/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../tile_allocation/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../tile_allocation/../mpsoc_arch/memory.h \ -+ ../tile_allocation/../mpsoc_arch/networkinterface.h \ -+ ../tile_allocation/../../analysis/analysis.h \ -+ ../tile_allocation/../../analysis/buffersizing/buffersizing.h \ -+ ../tile_allocation/../../analysis/buffersizing/buffer.h \ -+ ../tile_allocation/../../analysis/buffersizing/storage_distribution.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../basic_types.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/buffersizing/bounded_buffer.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/buffersizing/buffer_ning_gao.h \ -+ ../tile_allocation/../../analysis/dependency_graph/dependency_graph.h \ -+ ../tile_allocation/../../analysis/dependency_graph/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/latency/latency.h \ -+ ../tile_allocation/../../analysis/latency/../../base/algo/components.h \ -+ ../tile_allocation/../../analysis/latency/../../base/algo/../../../base/base.h \ -+ ../tile_allocation/../../analysis/latency/../../base/algo/../untimed/graph.h \ -+ ../tile_allocation/../../analysis/latency/../../base/algo/repetition_vector.h \ -+ ../tile_allocation/../../analysis/latency/minimal.h \ -+ ../tile_allocation/../../analysis/latency/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/latency/selftimed.h \ -+ ../tile_allocation/../../analysis/latency/selftimed_minimal.h \ -+ ../tile_allocation/../../analysis/latency/single_processor_random_staticorder.h \ -+ ../tile_allocation/../../analysis/mcm/mcm.h \ -+ ../tile_allocation/../../analysis/mcm/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/mcm/mcmgraph.h \ -+ ../tile_allocation/../../analysis/throughput/throughput.h \ -+ ../tile_allocation/../../analysis/throughput/selftimed_throughput.h \ -+ ../tile_allocation/../../analysis/throughput/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/throughput/tdma_schedule.h \ -+ ../tile_allocation/../../analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../tile_allocation/../../analysis/throughput/deadlock.h \ -+ ../tile_allocation/../../analysis/throughput/static_periodic_ning_gao.h \ -+ ../tile_allocation/../../analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../tile_allocation/../../analysis/token_communication/comm_trace.h \ -+ ../tile_allocation/../../analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../tile_allocation/../../analysis/maxplus/mpexplore.h \ -+ ../tile_allocation/../../analysis/maxplus/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../noc_allocation/mapping/nocmapping.h \ -+ ../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/problem.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/schedulingentity.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/message.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/interconnect_graph.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/link.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/slot.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/../../../basic_types.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/../../../../base/base.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/node.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/route.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/packet.h \ -+ ../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../noc_allocation/mapping/../../flow/types.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_flow_tile.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_flow_tile.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_flow_tile.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_flow_tile.d 2022-01-07 15:10:33.351306657 +0800 -@@ -0,0 +1,135 @@ -+sdf_resource_allocation_flow_tile.o: tile.cc flow.h ../tile_allocation/binding.h \ -+ ../tile_allocation/../mpsoc_arch/graph.h \ -+ ../tile_allocation/../mpsoc_arch/tile.h \ -+ ../tile_allocation/../mpsoc_arch/connection.h \ -+ ../tile_allocation/../mpsoc_arch/component.h \ -+ ../tile_allocation/../mpsoc_arch/arch_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/base.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/exception/exception.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/exception/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/exception/../string/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/exception/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/fraction/fraction.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/fraction/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/fraction/../math/cmath.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/fraction/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/xml/xml.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/tempfile/tempfile.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/tempfile/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/math/cmath.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/random/random.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/sort/sort.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/time/time.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/time/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/time/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/log/log.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/log/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/log/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/sequence/sequence.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/sequence/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/matrix/matrix.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/matrix/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/maxplus.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/mptype.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/../string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/maxplus/mpmatrix.h \ -+ ../tile_allocation/../mpsoc_arch/../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/binding.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/graph.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/channel.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/graph.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/channel.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/actor.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/port.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/component.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../../base/base.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../basic_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/timed_types.h \ -+ ../tile_allocation/../mpsoc_arch/../../base/timed/actor.h \ -+ ../tile_allocation/../mpsoc_arch/processor.h \ -+ ../tile_allocation/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../tile_allocation/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../tile_allocation/../mpsoc_arch/memory.h \ -+ ../tile_allocation/../mpsoc_arch/networkinterface.h \ -+ ../tile_allocation/../../analysis/analysis.h \ -+ ../tile_allocation/../../analysis/buffersizing/buffersizing.h \ -+ ../tile_allocation/../../analysis/buffersizing/buffer.h \ -+ ../tile_allocation/../../analysis/buffersizing/storage_distribution.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../basic_types.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/buffersizing/bounded_buffer.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../tile_allocation/../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/buffersizing/buffer_ning_gao.h \ -+ ../tile_allocation/../../analysis/dependency_graph/dependency_graph.h \ -+ ../tile_allocation/../../analysis/dependency_graph/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/latency/latency.h \ -+ ../tile_allocation/../../analysis/latency/../../base/algo/components.h \ -+ ../tile_allocation/../../analysis/latency/../../base/algo/../../../base/base.h \ -+ ../tile_allocation/../../analysis/latency/../../base/algo/../untimed/graph.h \ -+ ../tile_allocation/../../analysis/latency/../../base/algo/repetition_vector.h \ -+ ../tile_allocation/../../analysis/latency/minimal.h \ -+ ../tile_allocation/../../analysis/latency/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/latency/selftimed.h \ -+ ../tile_allocation/../../analysis/latency/selftimed_minimal.h \ -+ ../tile_allocation/../../analysis/latency/single_processor_random_staticorder.h \ -+ ../tile_allocation/../../analysis/mcm/mcm.h \ -+ ../tile_allocation/../../analysis/mcm/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/mcm/mcmgraph.h \ -+ ../tile_allocation/../../analysis/throughput/throughput.h \ -+ ../tile_allocation/../../analysis/throughput/selftimed_throughput.h \ -+ ../tile_allocation/../../analysis/throughput/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/throughput/tdma_schedule.h \ -+ ../tile_allocation/../../analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../tile_allocation/../../analysis/throughput/deadlock.h \ -+ ../tile_allocation/../../analysis/throughput/static_periodic_ning_gao.h \ -+ ../tile_allocation/../../analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../tile_allocation/../../analysis/token_communication/comm_trace.h \ -+ ../tile_allocation/../../analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../tile_allocation/../../analysis/maxplus/mpexplore.h \ -+ ../tile_allocation/../../analysis/maxplus/../../base/timed/graph.h \ -+ ../tile_allocation/../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../noc_allocation/mapping/nocmapping.h \ -+ ../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/problem.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/schedulingentity.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/message.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/interconnect_graph.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/link.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/slot.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/../../../basic_types.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/../../../../base/base.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/node.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/route.h \ -+ ../noc_allocation/mapping/../scheduler/../problem/packet.h \ -+ ../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../noc_allocation/mapping/../../flow/types.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_binding.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_binding.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_binding.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_binding.d 2022-01-07 15:10:34.861303926 +0800 -@@ -0,0 +1,61 @@ -+sdf_resource_allocation_mpsoc_arch_binding.o: binding.cc binding.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_component.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_component.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_component.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_component.d 2022-01-07 15:10:35.954635330 +0800 -@@ -0,0 +1,42 @@ -+sdf_resource_allocation_mpsoc_arch_component.o: component.cc component.h arch_types.h ../../../base/base.h \ -+ ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_connection.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_connection.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_connection.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_connection.d 2022-01-07 15:10:36.854633773 +0800 -@@ -0,0 +1,53 @@ -+sdf_resource_allocation_mpsoc_arch_connection.o: connection.cc connection.h component.h arch_types.h \ -+ ../../../base/base.h ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ binding.h ../../base/timed/graph.h ../../base/timed/channel.h \ -+ ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_graph.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_graph.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_graph.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_graph.d 2022-01-07 15:10:37.987965179 +0800 -@@ -0,0 +1,55 @@ -+sdf_resource_allocation_mpsoc_arch_graph.o: graph.cc graph.h tile.h connection.h component.h arch_types.h \ -+ ../../../base/base.h ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ binding.h ../../base/timed/graph.h ../../base/timed/channel.h \ -+ ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h processor.h \ -+ ../scheduling/static_order_schedule.h \ -+ ../scheduling/../../base/timed/graph.h memory.h networkinterface.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_memory.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_memory.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_memory.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_memory.d 2022-01-07 15:10:39.661295750 +0800 -@@ -0,0 +1,53 @@ -+sdf_resource_allocation_mpsoc_arch_memory.o: memory.cc memory.h component.h arch_types.h \ -+ ../../../base/base.h ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ binding.h ../../base/timed/graph.h ../../base/timed/channel.h \ -+ ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_networkinterface.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_networkinterface.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_networkinterface.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_networkinterface.d 2022-01-07 15:10:40.654627484 +0800 -@@ -0,0 +1,53 @@ -+sdf_resource_allocation_mpsoc_arch_networkinterface.o: networkinterface.cc networkinterface.h component.h \ -+ arch_types.h ../../../base/base.h ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ binding.h ../../base/timed/graph.h ../../base/timed/channel.h \ -+ ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_processor.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_processor.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_processor.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_processor.d 2022-01-07 15:10:41.647959251 +0800 -@@ -0,0 +1,55 @@ -+sdf_resource_allocation_mpsoc_arch_processor.o: processor.cc processor.h component.h arch_types.h \ -+ ../../../base/base.h ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ binding.h ../../base/timed/graph.h ../../base/timed/channel.h \ -+ ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../scheduling/static_order_schedule.h \ -+ ../scheduling/../../base/timed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_tile.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_tile.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_tile.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_tile.d 2022-01-07 15:10:42.681290988 +0800 -@@ -0,0 +1,55 @@ -+sdf_resource_allocation_mpsoc_arch_tile.o: tile.cc tile.h connection.h component.h arch_types.h \ -+ ../../../base/base.h ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ binding.h ../../base/timed/graph.h ../../base/timed/channel.h \ -+ ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h processor.h \ -+ ../scheduling/static_order_schedule.h \ -+ ../scheduling/../../base/timed/graph.h memory.h networkinterface.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_xml.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_xml.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_xml.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_mpsoc_arch_xml.d 2022-01-07 15:10:43.751289370 +0800 -@@ -0,0 +1,55 @@ -+sdf_resource_allocation_mpsoc_arch_xml.o: xml.cc xml.h graph.h tile.h connection.h component.h arch_types.h \ -+ ../../../base/base.h ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ binding.h ../../base/timed/graph.h ../../base/timed/channel.h \ -+ ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h processor.h \ -+ ../scheduling/static_order_schedule.h \ -+ ../scheduling/../../base/timed/graph.h memory.h networkinterface.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_mapping_nocmapping.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_mapping_nocmapping.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_mapping_nocmapping.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_mapping_nocmapping.d 2022-01-07 15:10:45.187953923 +0800 -@@ -0,0 +1,121 @@ -+sdf_resource_allocation_noc_allocation_mapping_nocmapping.o: nocmapping.cc nocmapping.h ../scheduler/noc_scheduler.h \ -+ ../scheduler/../problem/problem.h \ -+ ../scheduler/../problem/schedulingentity.h \ -+ ../scheduler/../problem/message.h \ -+ ../scheduler/../problem/interconnect_graph.h \ -+ ../scheduler/../problem/link.h ../scheduler/../problem/slot.h \ -+ ../scheduler/../problem/../../../basic_types.h \ -+ ../scheduler/../problem/../../../../base/base.h \ -+ ../scheduler/../problem/../../../../base/exception/exception.h \ -+ ../scheduler/../problem/../../../../base/exception/../string/cstring.h \ -+ ../scheduler/../problem/../../../../base/exception/../string/../basic_types.h \ -+ ../scheduler/../problem/../../../../base/exception/../basic_types.h \ -+ ../scheduler/../problem/../../../../base/fraction/fraction.h \ -+ ../scheduler/../problem/../../../../base/fraction/../basic_types.h \ -+ ../scheduler/../problem/../../../../base/fraction/../math/cmath.h \ -+ ../scheduler/../problem/../../../../base/fraction/../string/cstring.h \ -+ ../scheduler/../problem/../../../../base/xml/xml.h \ -+ ../scheduler/../problem/../../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../scheduler/../problem/../../../../base/tempfile/tempfile.h \ -+ ../scheduler/../problem/../../../../base/tempfile/../string/cstring.h \ -+ ../scheduler/../problem/../../../../base/math/cmath.h \ -+ ../scheduler/../problem/../../../../base/random/random.h \ -+ ../scheduler/../problem/../../../../base/sort/sort.h \ -+ ../scheduler/../problem/../../../../base/time/time.h \ -+ ../scheduler/../problem/../../../../base/time/../basic_types.h \ -+ ../scheduler/../problem/../../../../base/time/../string/cstring.h \ -+ ../scheduler/../problem/../../../../base/log/log.h \ -+ ../scheduler/../problem/../../../../base/log/../string/cstring.h \ -+ ../scheduler/../problem/../../../../base/log/../basic_types.h \ -+ ../scheduler/../problem/../../../../base/sequence/sequence.h \ -+ ../scheduler/../problem/../../../../base/sequence/../basic_types.h \ -+ ../scheduler/../problem/../../../../base/matrix/matrix.h \ -+ ../scheduler/../problem/../../../../base/matrix/../basic_types.h \ -+ ../scheduler/../problem/../../../../base/maxplus/maxplus.h \ -+ ../scheduler/../problem/../../../../base/maxplus/mptype.h \ -+ ../scheduler/../problem/../../../../base/maxplus/../basic_types.h \ -+ ../scheduler/../problem/../../../../base/maxplus/../string/cstring.h \ -+ ../scheduler/../problem/../../../../base/maxplus/mpmatrix.h \ -+ ../scheduler/../problem/../../../../base/lookup/clookup.h \ -+ ../scheduler/../problem/node.h ../scheduler/../problem/route.h \ -+ ../scheduler/../problem/packet.h ../../../base/timed/graph.h \ -+ ../../../base/timed/channel.h ../../../base/timed/../untimed/graph.h \ -+ ../../../base/timed/../untimed/channel.h \ -+ ../../../base/timed/../untimed/actor.h \ -+ ../../../base/timed/../untimed/port.h \ -+ ../../../base/timed/../untimed/component.h \ -+ ../../../base/timed/../untimed/../../../base/base.h \ -+ ../../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../../base/timed/../untimed/../../basic_types.h \ -+ ../../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../../base/timed/timed_types.h ../../../base/timed/actor.h \ -+ ../../mpsoc_arch/graph.h ../../mpsoc_arch/tile.h \ -+ ../../mpsoc_arch/connection.h ../../mpsoc_arch/component.h \ -+ ../../mpsoc_arch/arch_types.h ../../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../mpsoc_arch/binding.h ../../mpsoc_arch/../../base/timed/graph.h \ -+ ../../mpsoc_arch/processor.h \ -+ ../../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../mpsoc_arch/memory.h ../../mpsoc_arch/networkinterface.h \ -+ ../../flow/types.h ../../../analysis/analysis.h \ -+ ../../../analysis/buffersizing/buffersizing.h \ -+ ../../../analysis/buffersizing/buffer.h \ -+ ../../../analysis/buffersizing/storage_distribution.h \ -+ ../../../analysis/buffersizing/../../basic_types.h \ -+ ../../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../../../analysis/buffersizing/bounded_buffer.h \ -+ ../../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../../analysis/buffersizing/buffer_ning_gao.h \ -+ ../../../analysis/dependency_graph/dependency_graph.h \ -+ ../../../analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../../analysis/latency/latency.h \ -+ ../../../analysis/latency/../../base/algo/components.h \ -+ ../../../analysis/latency/../../base/algo/../../../base/base.h \ -+ ../../../analysis/latency/../../base/algo/../untimed/graph.h \ -+ ../../../analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../../analysis/latency/minimal.h \ -+ ../../../analysis/latency/../../base/timed/graph.h \ -+ ../../../analysis/latency/selftimed.h \ -+ ../../../analysis/latency/selftimed_minimal.h \ -+ ../../../analysis/latency/single_processor_random_staticorder.h \ -+ ../../../analysis/mcm/mcm.h \ -+ ../../../analysis/mcm/../../base/timed/graph.h \ -+ ../../../analysis/mcm/mcmgraph.h \ -+ ../../../analysis/throughput/throughput.h \ -+ ../../../analysis/throughput/selftimed_throughput.h \ -+ ../../../analysis/throughput/../../base/timed/graph.h \ -+ ../../../analysis/throughput/tdma_schedule.h \ -+ ../../../analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../analysis/throughput/deadlock.h \ -+ ../../../analysis/throughput/static_periodic_ning_gao.h \ -+ ../../../analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../../analysis/token_communication/comm_trace.h \ -+ ../../../analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../../analysis/maxplus/mpexplore.h \ -+ ../../../analysis/maxplus/../../base/timed/graph.h \ -+ ../../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_interconnect_graph.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_interconnect_graph.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_interconnect_graph.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_interconnect_graph.d 2022-01-07 15:10:47.141284489 +0800 -@@ -0,0 +1,47 @@ -+sdf_resource_allocation_noc_allocation_problem_interconnect_graph.o: interconnect_graph.cc interconnect_graph.h link.h \ -+ slot.h ../../../basic_types.h ../../../../base/base.h \ -+ ../../../../base/exception/exception.h \ -+ ../../../../base/exception/../string/cstring.h \ -+ ../../../../base/exception/../string/../basic_types.h \ -+ ../../../../base/exception/../basic_types.h \ -+ ../../../../base/fraction/fraction.h \ -+ ../../../../base/fraction/../basic_types.h \ -+ ../../../../base/fraction/../math/cmath.h \ -+ ../../../../base/fraction/../string/cstring.h ../../../../base/xml/xml.h \ -+ ../../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../../base/tempfile/tempfile.h \ -+ ../../../../base/tempfile/../string/cstring.h \ -+ ../../../../base/math/cmath.h ../../../../base/random/random.h \ -+ ../../../../base/sort/sort.h ../../../../base/time/time.h \ -+ ../../../../base/time/../basic_types.h \ -+ ../../../../base/time/../string/cstring.h ../../../../base/log/log.h \ -+ ../../../../base/log/../string/cstring.h \ -+ ../../../../base/log/../basic_types.h \ -+ ../../../../base/sequence/sequence.h \ -+ ../../../../base/sequence/../basic_types.h \ -+ ../../../../base/matrix/matrix.h \ -+ ../../../../base/matrix/../basic_types.h \ -+ ../../../../base/maxplus/maxplus.h ../../../../base/maxplus/mptype.h \ -+ ../../../../base/maxplus/../basic_types.h \ -+ ../../../../base/maxplus/../string/cstring.h \ -+ ../../../../base/maxplus/mpmatrix.h ../../../../base/lookup/clookup.h \ -+ node.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_link.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_link.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_link.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_link.d 2022-01-07 15:10:48.357949496 +0800 -@@ -0,0 +1,46 @@ -+sdf_resource_allocation_noc_allocation_problem_link.o: link.cc link.h slot.h ../../../basic_types.h \ -+ ../../../../base/base.h ../../../../base/exception/exception.h \ -+ ../../../../base/exception/../string/cstring.h \ -+ ../../../../base/exception/../string/../basic_types.h \ -+ ../../../../base/exception/../basic_types.h \ -+ ../../../../base/fraction/fraction.h \ -+ ../../../../base/fraction/../basic_types.h \ -+ ../../../../base/fraction/../math/cmath.h \ -+ ../../../../base/fraction/../string/cstring.h ../../../../base/xml/xml.h \ -+ ../../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../../base/tempfile/tempfile.h \ -+ ../../../../base/tempfile/../string/cstring.h \ -+ ../../../../base/math/cmath.h ../../../../base/random/random.h \ -+ ../../../../base/sort/sort.h ../../../../base/time/time.h \ -+ ../../../../base/time/../basic_types.h \ -+ ../../../../base/time/../string/cstring.h ../../../../base/log/log.h \ -+ ../../../../base/log/../string/cstring.h \ -+ ../../../../base/log/../basic_types.h \ -+ ../../../../base/sequence/sequence.h \ -+ ../../../../base/sequence/../basic_types.h \ -+ ../../../../base/matrix/matrix.h \ -+ ../../../../base/matrix/../basic_types.h \ -+ ../../../../base/maxplus/maxplus.h ../../../../base/maxplus/mptype.h \ -+ ../../../../base/maxplus/../basic_types.h \ -+ ../../../../base/maxplus/../string/cstring.h \ -+ ../../../../base/maxplus/mpmatrix.h ../../../../base/lookup/clookup.h \ -+ node.h schedulingentity.h message.h interconnect_graph.h route.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_message.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_message.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_message.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_message.d 2022-01-07 15:10:49.534614600 +0800 -@@ -0,0 +1,47 @@ -+sdf_resource_allocation_noc_allocation_problem_message.o: message.cc message.h interconnect_graph.h link.h slot.h \ -+ ../../../basic_types.h ../../../../base/base.h \ -+ ../../../../base/exception/exception.h \ -+ ../../../../base/exception/../string/cstring.h \ -+ ../../../../base/exception/../string/../basic_types.h \ -+ ../../../../base/exception/../basic_types.h \ -+ ../../../../base/fraction/fraction.h \ -+ ../../../../base/fraction/../basic_types.h \ -+ ../../../../base/fraction/../math/cmath.h \ -+ ../../../../base/fraction/../string/cstring.h ../../../../base/xml/xml.h \ -+ ../../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../../base/tempfile/tempfile.h \ -+ ../../../../base/tempfile/../string/cstring.h \ -+ ../../../../base/math/cmath.h ../../../../base/random/random.h \ -+ ../../../../base/sort/sort.h ../../../../base/time/time.h \ -+ ../../../../base/time/../basic_types.h \ -+ ../../../../base/time/../string/cstring.h ../../../../base/log/log.h \ -+ ../../../../base/log/../string/cstring.h \ -+ ../../../../base/log/../basic_types.h \ -+ ../../../../base/sequence/sequence.h \ -+ ../../../../base/sequence/../basic_types.h \ -+ ../../../../base/matrix/matrix.h \ -+ ../../../../base/matrix/../basic_types.h \ -+ ../../../../base/maxplus/maxplus.h ../../../../base/maxplus/mptype.h \ -+ ../../../../base/maxplus/../basic_types.h \ -+ ../../../../base/maxplus/../string/cstring.h \ -+ ../../../../base/maxplus/mpmatrix.h ../../../../base/lookup/clookup.h \ -+ node.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_problem.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_problem.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_problem.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_problem.d 2022-01-07 15:10:50.471280055 +0800 -@@ -0,0 +1,47 @@ -+sdf_resource_allocation_noc_allocation_problem_problem.o: problem.cc problem.h schedulingentity.h message.h \ -+ interconnect_graph.h link.h slot.h ../../../basic_types.h \ -+ ../../../../base/base.h ../../../../base/exception/exception.h \ -+ ../../../../base/exception/../string/cstring.h \ -+ ../../../../base/exception/../string/../basic_types.h \ -+ ../../../../base/exception/../basic_types.h \ -+ ../../../../base/fraction/fraction.h \ -+ ../../../../base/fraction/../basic_types.h \ -+ ../../../../base/fraction/../math/cmath.h \ -+ ../../../../base/fraction/../string/cstring.h ../../../../base/xml/xml.h \ -+ ../../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../../base/tempfile/tempfile.h \ -+ ../../../../base/tempfile/../string/cstring.h \ -+ ../../../../base/math/cmath.h ../../../../base/random/random.h \ -+ ../../../../base/sort/sort.h ../../../../base/time/time.h \ -+ ../../../../base/time/../basic_types.h \ -+ ../../../../base/time/../string/cstring.h ../../../../base/log/log.h \ -+ ../../../../base/log/../string/cstring.h \ -+ ../../../../base/log/../basic_types.h \ -+ ../../../../base/sequence/sequence.h \ -+ ../../../../base/sequence/../basic_types.h \ -+ ../../../../base/matrix/matrix.h \ -+ ../../../../base/matrix/../basic_types.h \ -+ ../../../../base/maxplus/maxplus.h ../../../../base/maxplus/mptype.h \ -+ ../../../../base/maxplus/../basic_types.h \ -+ ../../../../base/maxplus/../string/cstring.h \ -+ ../../../../base/maxplus/mpmatrix.h ../../../../base/lookup/clookup.h \ -+ node.h route.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_route.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_route.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_route.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_route.d 2022-01-07 15:10:52.057944729 +0800 -@@ -0,0 +1,46 @@ -+sdf_resource_allocation_noc_allocation_problem_route.o: route.cc route.h link.h slot.h ../../../basic_types.h \ -+ ../../../../base/base.h ../../../../base/exception/exception.h \ -+ ../../../../base/exception/../string/cstring.h \ -+ ../../../../base/exception/../string/../basic_types.h \ -+ ../../../../base/exception/../basic_types.h \ -+ ../../../../base/fraction/fraction.h \ -+ ../../../../base/fraction/../basic_types.h \ -+ ../../../../base/fraction/../math/cmath.h \ -+ ../../../../base/fraction/../string/cstring.h ../../../../base/xml/xml.h \ -+ ../../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../../base/tempfile/tempfile.h \ -+ ../../../../base/tempfile/../string/cstring.h \ -+ ../../../../base/math/cmath.h ../../../../base/random/random.h \ -+ ../../../../base/sort/sort.h ../../../../base/time/time.h \ -+ ../../../../base/time/../basic_types.h \ -+ ../../../../base/time/../string/cstring.h ../../../../base/log/log.h \ -+ ../../../../base/log/../string/cstring.h \ -+ ../../../../base/log/../basic_types.h \ -+ ../../../../base/sequence/sequence.h \ -+ ../../../../base/sequence/../basic_types.h \ -+ ../../../../base/matrix/matrix.h \ -+ ../../../../base/matrix/../basic_types.h \ -+ ../../../../base/maxplus/maxplus.h ../../../../base/maxplus/mptype.h \ -+ ../../../../base/maxplus/../basic_types.h \ -+ ../../../../base/maxplus/../string/cstring.h \ -+ ../../../../base/maxplus/mpmatrix.h ../../../../base/lookup/clookup.h \ -+ node.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_schedulingentity.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_schedulingentity.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_schedulingentity.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_schedulingentity.d 2022-01-07 15:10:53.034610210 +0800 -@@ -0,0 +1,47 @@ -+sdf_resource_allocation_noc_allocation_problem_schedulingentity.o: schedulingentity.cc schedulingentity.h message.h \ -+ interconnect_graph.h link.h slot.h ../../../basic_types.h \ -+ ../../../../base/base.h ../../../../base/exception/exception.h \ -+ ../../../../base/exception/../string/cstring.h \ -+ ../../../../base/exception/../string/../basic_types.h \ -+ ../../../../base/exception/../basic_types.h \ -+ ../../../../base/fraction/fraction.h \ -+ ../../../../base/fraction/../basic_types.h \ -+ ../../../../base/fraction/../math/cmath.h \ -+ ../../../../base/fraction/../string/cstring.h ../../../../base/xml/xml.h \ -+ ../../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../../base/tempfile/tempfile.h \ -+ ../../../../base/tempfile/../string/cstring.h \ -+ ../../../../base/math/cmath.h ../../../../base/random/random.h \ -+ ../../../../base/sort/sort.h ../../../../base/time/time.h \ -+ ../../../../base/time/../basic_types.h \ -+ ../../../../base/time/../string/cstring.h ../../../../base/log/log.h \ -+ ../../../../base/log/../string/cstring.h \ -+ ../../../../base/log/../basic_types.h \ -+ ../../../../base/sequence/sequence.h \ -+ ../../../../base/sequence/../basic_types.h \ -+ ../../../../base/matrix/matrix.h \ -+ ../../../../base/matrix/../basic_types.h \ -+ ../../../../base/maxplus/maxplus.h ../../../../base/maxplus/mptype.h \ -+ ../../../../base/maxplus/../basic_types.h \ -+ ../../../../base/maxplus/../string/cstring.h \ -+ ../../../../base/maxplus/mpmatrix.h ../../../../base/lookup/clookup.h \ -+ node.h route.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_slot.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_slot.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_slot.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_problem_slot.d 2022-01-07 15:10:54.024609039 +0800 -@@ -0,0 +1,46 @@ -+sdf_resource_allocation_noc_allocation_problem_slot.o: slot.cc slot.h ../../../basic_types.h ../../../../base/base.h \ -+ ../../../../base/exception/exception.h \ -+ ../../../../base/exception/../string/cstring.h \ -+ ../../../../base/exception/../string/../basic_types.h \ -+ ../../../../base/exception/../basic_types.h \ -+ ../../../../base/fraction/fraction.h \ -+ ../../../../base/fraction/../basic_types.h \ -+ ../../../../base/fraction/../math/cmath.h \ -+ ../../../../base/fraction/../string/cstring.h ../../../../base/xml/xml.h \ -+ ../../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../../base/tempfile/tempfile.h \ -+ ../../../../base/tempfile/../string/cstring.h \ -+ ../../../../base/math/cmath.h ../../../../base/random/random.h \ -+ ../../../../base/sort/sort.h ../../../../base/time/time.h \ -+ ../../../../base/time/../basic_types.h \ -+ ../../../../base/time/../string/cstring.h ../../../../base/log/log.h \ -+ ../../../../base/log/../string/cstring.h \ -+ ../../../../base/log/../basic_types.h \ -+ ../../../../base/sequence/sequence.h \ -+ ../../../../base/sequence/../basic_types.h \ -+ ../../../../base/matrix/matrix.h \ -+ ../../../../base/matrix/../basic_types.h \ -+ ../../../../base/maxplus/maxplus.h ../../../../base/maxplus/mptype.h \ -+ ../../../../base/maxplus/../basic_types.h \ -+ ../../../../base/maxplus/../string/cstring.h \ -+ ../../../../base/maxplus/mpmatrix.h ../../../../base/lookup/clookup.h \ -+ schedulingentity.h message.h interconnect_graph.h link.h node.h route.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_scheduler_classic.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_scheduler_classic.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_scheduler_classic.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_scheduler_classic.d 2022-01-07 15:10:56.184606593 +0800 -@@ -0,0 +1,55 @@ -+sdf_resource_allocation_noc_allocation_scheduler_classic.o: classic.cc classic.h noc_scheduler.h ../problem/problem.h \ -+ ../problem/schedulingentity.h ../problem/message.h \ -+ ../problem/interconnect_graph.h ../problem/link.h ../problem/slot.h \ -+ ../problem/../../../basic_types.h ../problem/../../../../base/base.h \ -+ ../problem/../../../../base/exception/exception.h \ -+ ../problem/../../../../base/exception/../string/cstring.h \ -+ ../problem/../../../../base/exception/../string/../basic_types.h \ -+ ../problem/../../../../base/exception/../basic_types.h \ -+ ../problem/../../../../base/fraction/fraction.h \ -+ ../problem/../../../../base/fraction/../basic_types.h \ -+ ../problem/../../../../base/fraction/../math/cmath.h \ -+ ../problem/../../../../base/fraction/../string/cstring.h \ -+ ../problem/../../../../base/xml/xml.h \ -+ ../problem/../../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../problem/../../../../base/tempfile/tempfile.h \ -+ ../problem/../../../../base/tempfile/../string/cstring.h \ -+ ../problem/../../../../base/math/cmath.h \ -+ ../problem/../../../../base/random/random.h \ -+ ../problem/../../../../base/sort/sort.h \ -+ ../problem/../../../../base/time/time.h \ -+ ../problem/../../../../base/time/../basic_types.h \ -+ ../problem/../../../../base/time/../string/cstring.h \ -+ ../problem/../../../../base/log/log.h \ -+ ../problem/../../../../base/log/../string/cstring.h \ -+ ../problem/../../../../base/log/../basic_types.h \ -+ ../problem/../../../../base/sequence/sequence.h \ -+ ../problem/../../../../base/sequence/../basic_types.h \ -+ ../problem/../../../../base/matrix/matrix.h \ -+ ../problem/../../../../base/matrix/../basic_types.h \ -+ ../problem/../../../../base/maxplus/maxplus.h \ -+ ../problem/../../../../base/maxplus/mptype.h \ -+ ../problem/../../../../base/maxplus/../basic_types.h \ -+ ../problem/../../../../base/maxplus/../string/cstring.h \ -+ ../problem/../../../../base/maxplus/mpmatrix.h \ -+ ../problem/../../../../base/lookup/clookup.h ../problem/node.h \ -+ ../problem/route.h ../problem/packet.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_scheduler_greedy.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_scheduler_greedy.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_scheduler_greedy.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_scheduler_greedy.d 2022-01-07 15:10:57.897938089 +0800 -@@ -0,0 +1,55 @@ -+sdf_resource_allocation_noc_allocation_scheduler_greedy.o: greedy.cc greedy.h noc_scheduler.h ../problem/problem.h \ -+ ../problem/schedulingentity.h ../problem/message.h \ -+ ../problem/interconnect_graph.h ../problem/link.h ../problem/slot.h \ -+ ../problem/../../../basic_types.h ../problem/../../../../base/base.h \ -+ ../problem/../../../../base/exception/exception.h \ -+ ../problem/../../../../base/exception/../string/cstring.h \ -+ ../problem/../../../../base/exception/../string/../basic_types.h \ -+ ../problem/../../../../base/exception/../basic_types.h \ -+ ../problem/../../../../base/fraction/fraction.h \ -+ ../problem/../../../../base/fraction/../basic_types.h \ -+ ../problem/../../../../base/fraction/../math/cmath.h \ -+ ../problem/../../../../base/fraction/../string/cstring.h \ -+ ../problem/../../../../base/xml/xml.h \ -+ ../problem/../../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../problem/../../../../base/tempfile/tempfile.h \ -+ ../problem/../../../../base/tempfile/../string/cstring.h \ -+ ../problem/../../../../base/math/cmath.h \ -+ ../problem/../../../../base/random/random.h \ -+ ../problem/../../../../base/sort/sort.h \ -+ ../problem/../../../../base/time/time.h \ -+ ../problem/../../../../base/time/../basic_types.h \ -+ ../problem/../../../../base/time/../string/cstring.h \ -+ ../problem/../../../../base/log/log.h \ -+ ../problem/../../../../base/log/../string/cstring.h \ -+ ../problem/../../../../base/log/../basic_types.h \ -+ ../problem/../../../../base/sequence/sequence.h \ -+ ../problem/../../../../base/sequence/../basic_types.h \ -+ ../problem/../../../../base/matrix/matrix.h \ -+ ../problem/../../../../base/matrix/../basic_types.h \ -+ ../problem/../../../../base/maxplus/maxplus.h \ -+ ../problem/../../../../base/maxplus/mptype.h \ -+ ../problem/../../../../base/maxplus/../basic_types.h \ -+ ../problem/../../../../base/maxplus/../string/cstring.h \ -+ ../problem/../../../../base/maxplus/mpmatrix.h \ -+ ../problem/../../../../base/lookup/clookup.h ../problem/node.h \ -+ ../problem/route.h ../problem/packet.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_scheduler_knowledge.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_scheduler_knowledge.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_scheduler_knowledge.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_scheduler_knowledge.d 2022-01-07 15:10:58.937937018 +0800 -@@ -0,0 +1,55 @@ -+sdf_resource_allocation_noc_allocation_scheduler_knowledge.o: knowledge.cc knowledge.h noc_scheduler.h \ -+ ../problem/problem.h ../problem/schedulingentity.h ../problem/message.h \ -+ ../problem/interconnect_graph.h ../problem/link.h ../problem/slot.h \ -+ ../problem/../../../basic_types.h ../problem/../../../../base/base.h \ -+ ../problem/../../../../base/exception/exception.h \ -+ ../problem/../../../../base/exception/../string/cstring.h \ -+ ../problem/../../../../base/exception/../string/../basic_types.h \ -+ ../problem/../../../../base/exception/../basic_types.h \ -+ ../problem/../../../../base/fraction/fraction.h \ -+ ../problem/../../../../base/fraction/../basic_types.h \ -+ ../problem/../../../../base/fraction/../math/cmath.h \ -+ ../problem/../../../../base/fraction/../string/cstring.h \ -+ ../problem/../../../../base/xml/xml.h \ -+ ../problem/../../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../problem/../../../../base/tempfile/tempfile.h \ -+ ../problem/../../../../base/tempfile/../string/cstring.h \ -+ ../problem/../../../../base/math/cmath.h \ -+ ../problem/../../../../base/random/random.h \ -+ ../problem/../../../../base/sort/sort.h \ -+ ../problem/../../../../base/time/time.h \ -+ ../problem/../../../../base/time/../basic_types.h \ -+ ../problem/../../../../base/time/../string/cstring.h \ -+ ../problem/../../../../base/log/log.h \ -+ ../problem/../../../../base/log/../string/cstring.h \ -+ ../problem/../../../../base/log/../basic_types.h \ -+ ../problem/../../../../base/sequence/sequence.h \ -+ ../problem/../../../../base/sequence/../basic_types.h \ -+ ../problem/../../../../base/matrix/matrix.h \ -+ ../problem/../../../../base/matrix/../basic_types.h \ -+ ../problem/../../../../base/maxplus/maxplus.h \ -+ ../problem/../../../../base/maxplus/mptype.h \ -+ ../problem/../../../../base/maxplus/../basic_types.h \ -+ ../problem/../../../../base/maxplus/../string/cstring.h \ -+ ../problem/../../../../base/maxplus/mpmatrix.h \ -+ ../problem/../../../../base/lookup/clookup.h ../problem/node.h \ -+ ../problem/route.h ../problem/packet.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_scheduler_noc_scheduler.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_scheduler_noc_scheduler.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_scheduler_noc_scheduler.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_scheduler_noc_scheduler.d 2022-01-07 15:11:00.571268741 +0800 -@@ -0,0 +1,55 @@ -+sdf_resource_allocation_noc_allocation_scheduler_noc_scheduler.o: noc_scheduler.cc noc_scheduler.h ../problem/problem.h \ -+ ../problem/schedulingentity.h ../problem/message.h \ -+ ../problem/interconnect_graph.h ../problem/link.h ../problem/slot.h \ -+ ../problem/../../../basic_types.h ../problem/../../../../base/base.h \ -+ ../problem/../../../../base/exception/exception.h \ -+ ../problem/../../../../base/exception/../string/cstring.h \ -+ ../problem/../../../../base/exception/../string/../basic_types.h \ -+ ../problem/../../../../base/exception/../basic_types.h \ -+ ../problem/../../../../base/fraction/fraction.h \ -+ ../problem/../../../../base/fraction/../basic_types.h \ -+ ../problem/../../../../base/fraction/../math/cmath.h \ -+ ../problem/../../../../base/fraction/../string/cstring.h \ -+ ../problem/../../../../base/xml/xml.h \ -+ ../problem/../../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../problem/../../../../base/tempfile/tempfile.h \ -+ ../problem/../../../../base/tempfile/../string/cstring.h \ -+ ../problem/../../../../base/math/cmath.h \ -+ ../problem/../../../../base/random/random.h \ -+ ../problem/../../../../base/sort/sort.h \ -+ ../problem/../../../../base/time/time.h \ -+ ../problem/../../../../base/time/../basic_types.h \ -+ ../problem/../../../../base/time/../string/cstring.h \ -+ ../problem/../../../../base/log/log.h \ -+ ../problem/../../../../base/log/../string/cstring.h \ -+ ../problem/../../../../base/log/../basic_types.h \ -+ ../problem/../../../../base/sequence/sequence.h \ -+ ../problem/../../../../base/sequence/../basic_types.h \ -+ ../problem/../../../../base/matrix/matrix.h \ -+ ../problem/../../../../base/matrix/../basic_types.h \ -+ ../problem/../../../../base/maxplus/maxplus.h \ -+ ../problem/../../../../base/maxplus/mptype.h \ -+ ../problem/../../../../base/maxplus/../basic_types.h \ -+ ../problem/../../../../base/maxplus/../string/cstring.h \ -+ ../problem/../../../../base/maxplus/mpmatrix.h \ -+ ../problem/../../../../base/lookup/clookup.h ../problem/node.h \ -+ ../problem/route.h ../problem/packet.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_scheduler_random.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_scheduler_random.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_scheduler_random.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_scheduler_random.d 2022-01-07 15:11:03.474599413 +0800 -@@ -0,0 +1,55 @@ -+sdf_resource_allocation_noc_allocation_scheduler_random.o: random.cc random.h noc_scheduler.h ../problem/problem.h \ -+ ../problem/schedulingentity.h ../problem/message.h \ -+ ../problem/interconnect_graph.h ../problem/link.h ../problem/slot.h \ -+ ../problem/../../../basic_types.h ../problem/../../../../base/base.h \ -+ ../problem/../../../../base/exception/exception.h \ -+ ../problem/../../../../base/exception/../string/cstring.h \ -+ ../problem/../../../../base/exception/../string/../basic_types.h \ -+ ../problem/../../../../base/exception/../basic_types.h \ -+ ../problem/../../../../base/fraction/fraction.h \ -+ ../problem/../../../../base/fraction/../basic_types.h \ -+ ../problem/../../../../base/fraction/../math/cmath.h \ -+ ../problem/../../../../base/fraction/../string/cstring.h \ -+ ../problem/../../../../base/xml/xml.h \ -+ ../problem/../../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../problem/../../../../base/tempfile/tempfile.h \ -+ ../problem/../../../../base/tempfile/../string/cstring.h \ -+ ../problem/../../../../base/math/cmath.h \ -+ ../problem/../../../../base/random/random.h \ -+ ../problem/../../../../base/sort/sort.h \ -+ ../problem/../../../../base/time/time.h \ -+ ../problem/../../../../base/time/../basic_types.h \ -+ ../problem/../../../../base/time/../string/cstring.h \ -+ ../problem/../../../../base/log/log.h \ -+ ../problem/../../../../base/log/../string/cstring.h \ -+ ../problem/../../../../base/log/../basic_types.h \ -+ ../problem/../../../../base/sequence/sequence.h \ -+ ../problem/../../../../base/sequence/../basic_types.h \ -+ ../problem/../../../../base/matrix/matrix.h \ -+ ../problem/../../../../base/matrix/../basic_types.h \ -+ ../problem/../../../../base/maxplus/maxplus.h \ -+ ../problem/../../../../base/maxplus/mptype.h \ -+ ../problem/../../../../base/maxplus/../basic_types.h \ -+ ../problem/../../../../base/maxplus/../string/cstring.h \ -+ ../problem/../../../../base/maxplus/mpmatrix.h \ -+ ../problem/../../../../base/lookup/clookup.h ../problem/node.h \ -+ ../problem/route.h ../problem/packet.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_scheduler_ripup.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_scheduler_ripup.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_scheduler_ripup.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_noc_allocation_scheduler_ripup.d 2022-01-07 15:11:05.067931393 +0800 -@@ -0,0 +1,55 @@ -+sdf_resource_allocation_noc_allocation_scheduler_ripup.o: ripup.cc ripup.h noc_scheduler.h ../problem/problem.h \ -+ ../problem/schedulingentity.h ../problem/message.h \ -+ ../problem/interconnect_graph.h ../problem/link.h ../problem/slot.h \ -+ ../problem/../../../basic_types.h ../problem/../../../../base/base.h \ -+ ../problem/../../../../base/exception/exception.h \ -+ ../problem/../../../../base/exception/../string/cstring.h \ -+ ../problem/../../../../base/exception/../string/../basic_types.h \ -+ ../problem/../../../../base/exception/../basic_types.h \ -+ ../problem/../../../../base/fraction/fraction.h \ -+ ../problem/../../../../base/fraction/../basic_types.h \ -+ ../problem/../../../../base/fraction/../math/cmath.h \ -+ ../problem/../../../../base/fraction/../string/cstring.h \ -+ ../problem/../../../../base/xml/xml.h \ -+ ../problem/../../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../problem/../../../../base/tempfile/tempfile.h \ -+ ../problem/../../../../base/tempfile/../string/cstring.h \ -+ ../problem/../../../../base/math/cmath.h \ -+ ../problem/../../../../base/random/random.h \ -+ ../problem/../../../../base/sort/sort.h \ -+ ../problem/../../../../base/time/time.h \ -+ ../problem/../../../../base/time/../basic_types.h \ -+ ../problem/../../../../base/time/../string/cstring.h \ -+ ../problem/../../../../base/log/log.h \ -+ ../problem/../../../../base/log/../string/cstring.h \ -+ ../problem/../../../../base/log/../basic_types.h \ -+ ../problem/../../../../base/sequence/sequence.h \ -+ ../problem/../../../../base/sequence/../basic_types.h \ -+ ../problem/../../../../base/matrix/matrix.h \ -+ ../problem/../../../../base/matrix/../basic_types.h \ -+ ../problem/../../../../base/maxplus/maxplus.h \ -+ ../problem/../../../../base/maxplus/mptype.h \ -+ ../problem/../../../../base/maxplus/../basic_types.h \ -+ ../problem/../../../../base/maxplus/../string/cstring.h \ -+ ../problem/../../../../base/maxplus/mpmatrix.h \ -+ ../problem/../../../../base/lookup/clookup.h ../problem/node.h \ -+ ../problem/route.h ../problem/packet.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_scheduling_list_scheduler.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_scheduling_list_scheduler.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_scheduling_list_scheduler.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_scheduling_list_scheduler.d 2022-01-07 15:11:06.341263706 +0800 -@@ -0,0 +1,116 @@ -+sdf_resource_allocation_scheduling_list_scheduler.o: list_scheduler.cc list_scheduler.h \ -+ ../../analysis/analysis.h ../../analysis/buffersizing/buffersizing.h \ -+ ../../analysis/buffersizing/buffer.h \ -+ ../../analysis/buffersizing/storage_distribution.h \ -+ ../../analysis/buffersizing/../../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../base/timed/channel.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/graph.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/channel.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/actor.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/port.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/component.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/base.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../analysis/buffersizing/../../base/timed/timed_types.h \ -+ ../../analysis/buffersizing/../../base/timed/actor.h \ -+ ../../analysis/buffersizing/bounded_buffer.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/buffer_ning_gao.h \ -+ ../../analysis/dependency_graph/dependency_graph.h \ -+ ../../analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../analysis/latency/latency.h \ -+ ../../analysis/latency/../../base/algo/components.h \ -+ ../../analysis/latency/../../base/algo/../../../base/base.h \ -+ ../../analysis/latency/../../base/algo/../untimed/graph.h \ -+ ../../analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../analysis/latency/minimal.h \ -+ ../../analysis/latency/../../base/timed/graph.h \ -+ ../../analysis/latency/selftimed.h \ -+ ../../analysis/latency/selftimed_minimal.h \ -+ ../../analysis/latency/single_processor_random_staticorder.h \ -+ ../../analysis/mcm/mcm.h ../../analysis/mcm/../../base/timed/graph.h \ -+ ../../analysis/mcm/mcmgraph.h ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/selftimed_throughput.h \ -+ ../../analysis/throughput/../../base/timed/graph.h \ -+ ../../analysis/throughput/tdma_schedule.h \ -+ ../../analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/throughput/deadlock.h \ -+ ../../analysis/throughput/static_periodic_ning_gao.h \ -+ ../../analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../analysis/token_communication/comm_trace.h \ -+ ../../analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/maxplus/mpexplore.h \ -+ ../../analysis/maxplus/../../base/timed/graph.h \ -+ ../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/algo/components.h ../../base/algo/repetition_vector.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_scheduling_priority_list_scheduler.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_scheduling_priority_list_scheduler.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_scheduling_priority_list_scheduler.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_scheduling_priority_list_scheduler.d 2022-01-07 15:11:08.494595424 +0800 -@@ -0,0 +1,117 @@ -+sdf_resource_allocation_scheduling_priority_list_scheduler.o: priority_list_scheduler.cc \ -+ priority_list_scheduler.h ../../analysis/analysis.h \ -+ ../../analysis/buffersizing/buffersizing.h \ -+ ../../analysis/buffersizing/buffer.h \ -+ ../../analysis/buffersizing/storage_distribution.h \ -+ ../../analysis/buffersizing/../../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../base/timed/channel.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/graph.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/channel.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/actor.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/port.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/component.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/base.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../analysis/buffersizing/../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../analysis/buffersizing/../../base/timed/timed_types.h \ -+ ../../analysis/buffersizing/../../base/timed/actor.h \ -+ ../../analysis/buffersizing/bounded_buffer.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/buffer_ning_gao.h \ -+ ../../analysis/dependency_graph/dependency_graph.h \ -+ ../../analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../analysis/latency/latency.h \ -+ ../../analysis/latency/../../base/algo/components.h \ -+ ../../analysis/latency/../../base/algo/../../../base/base.h \ -+ ../../analysis/latency/../../base/algo/../untimed/graph.h \ -+ ../../analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../analysis/latency/minimal.h \ -+ ../../analysis/latency/../../base/timed/graph.h \ -+ ../../analysis/latency/selftimed.h \ -+ ../../analysis/latency/selftimed_minimal.h \ -+ ../../analysis/latency/single_processor_random_staticorder.h \ -+ ../../analysis/mcm/mcm.h ../../analysis/mcm/../../base/timed/graph.h \ -+ ../../analysis/mcm/mcmgraph.h ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/selftimed_throughput.h \ -+ ../../analysis/throughput/../../base/timed/graph.h \ -+ ../../analysis/throughput/tdma_schedule.h \ -+ ../../analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/throughput/deadlock.h \ -+ ../../analysis/throughput/static_periodic_ning_gao.h \ -+ ../../analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../analysis/token_communication/comm_trace.h \ -+ ../../analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/maxplus/mpexplore.h \ -+ ../../analysis/maxplus/../../base/timed/graph.h \ -+ ../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/algo/components.h ../../base/algo/repetition_vector.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_scheduling_static_order_schedule.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_scheduling_static_order_schedule.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_scheduling_static_order_schedule.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_scheduling_static_order_schedule.d 2022-01-07 15:11:10.791260522 +0800 -@@ -0,0 +1,62 @@ -+sdf_resource_allocation_scheduling_static_order_schedule.o: static_order_schedule.cc static_order_schedule.h \ -+ ../../base/timed/graph.h ../../base/timed/channel.h \ -+ ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_scheduling_static_periodic_scheduler_chao.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_scheduling_static_periodic_scheduler_chao.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_scheduling_static_periodic_scheduler_chao.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_scheduling_static_periodic_scheduler_chao.d 2022-01-07 15:11:13.741258745 +0800 -@@ -0,0 +1,65 @@ -+sdf_resource_allocation_scheduling_static_periodic_scheduler_chao.o: static_periodic_scheduler_chao.cc \ -+ static_periodic_scheduler_chao.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/algo/repetition_vector.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/../untimed/graph.h ../../base/algo/components.h \ -+ ../../base/hsdf/check.h ../../base/hsdf/../untimed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_scheduling_static_periodic_scheduler.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_scheduling_static_periodic_scheduler.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_scheduling_static_periodic_scheduler.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_scheduling_static_periodic_scheduler.d 2022-01-07 15:11:11.957926452 +0800 -@@ -0,0 +1,64 @@ -+sdf_resource_allocation_scheduling_static_periodic_scheduler.o: static_periodic_scheduler.cc \ -+ static_periodic_scheduler.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/algo/repetition_vector.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/../untimed/graph.h ../../base/algo/components.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_tile_allocation_binding.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_tile_allocation_binding.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_tile_allocation_binding.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_tile_allocation_binding.d 2022-01-07 15:11:15.751257686 +0800 -@@ -0,0 +1,115 @@ -+sdf_resource_allocation_tile_allocation_binding.o: binding.cc binding.h ../mpsoc_arch/graph.h \ -+ ../mpsoc_arch/tile.h ../mpsoc_arch/connection.h \ -+ ../mpsoc_arch/component.h ../mpsoc_arch/arch_types.h \ -+ ../mpsoc_arch/../../../base/base.h \ -+ ../mpsoc_arch/../../../base/exception/exception.h \ -+ ../mpsoc_arch/../../../base/exception/../string/cstring.h \ -+ ../mpsoc_arch/../../../base/exception/../string/../basic_types.h \ -+ ../mpsoc_arch/../../../base/exception/../basic_types.h \ -+ ../mpsoc_arch/../../../base/fraction/fraction.h \ -+ ../mpsoc_arch/../../../base/fraction/../basic_types.h \ -+ ../mpsoc_arch/../../../base/fraction/../math/cmath.h \ -+ ../mpsoc_arch/../../../base/fraction/../string/cstring.h \ -+ ../mpsoc_arch/../../../base/xml/xml.h \ -+ ../mpsoc_arch/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../mpsoc_arch/../../../base/tempfile/tempfile.h \ -+ ../mpsoc_arch/../../../base/tempfile/../string/cstring.h \ -+ ../mpsoc_arch/../../../base/math/cmath.h \ -+ ../mpsoc_arch/../../../base/random/random.h \ -+ ../mpsoc_arch/../../../base/sort/sort.h \ -+ ../mpsoc_arch/../../../base/time/time.h \ -+ ../mpsoc_arch/../../../base/time/../basic_types.h \ -+ ../mpsoc_arch/../../../base/time/../string/cstring.h \ -+ ../mpsoc_arch/../../../base/log/log.h \ -+ ../mpsoc_arch/../../../base/log/../string/cstring.h \ -+ ../mpsoc_arch/../../../base/log/../basic_types.h \ -+ ../mpsoc_arch/../../../base/sequence/sequence.h \ -+ ../mpsoc_arch/../../../base/sequence/../basic_types.h \ -+ ../mpsoc_arch/../../../base/matrix/matrix.h \ -+ ../mpsoc_arch/../../../base/matrix/../basic_types.h \ -+ ../mpsoc_arch/../../../base/maxplus/maxplus.h \ -+ ../mpsoc_arch/../../../base/maxplus/mptype.h \ -+ ../mpsoc_arch/../../../base/maxplus/../basic_types.h \ -+ ../mpsoc_arch/../../../base/maxplus/../string/cstring.h \ -+ ../mpsoc_arch/../../../base/maxplus/mpmatrix.h \ -+ ../mpsoc_arch/../../../base/lookup/clookup.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../mpsoc_arch/binding.h ../mpsoc_arch/../../base/timed/graph.h \ -+ ../mpsoc_arch/../../base/timed/channel.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/graph.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/channel.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/actor.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/port.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/component.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/../../../base/base.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/../../basic_types.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../mpsoc_arch/../../base/timed/timed_types.h \ -+ ../mpsoc_arch/../../base/timed/actor.h ../mpsoc_arch/processor.h \ -+ ../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../mpsoc_arch/memory.h ../mpsoc_arch/networkinterface.h \ -+ ../../analysis/analysis.h ../../analysis/buffersizing/buffersizing.h \ -+ ../../analysis/buffersizing/buffer.h \ -+ ../../analysis/buffersizing/storage_distribution.h \ -+ ../../analysis/buffersizing/../../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/bounded_buffer.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/buffer_ning_gao.h \ -+ ../../analysis/dependency_graph/dependency_graph.h \ -+ ../../analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../analysis/latency/latency.h \ -+ ../../analysis/latency/../../base/algo/components.h \ -+ ../../analysis/latency/../../base/algo/../../../base/base.h \ -+ ../../analysis/latency/../../base/algo/../untimed/graph.h \ -+ ../../analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../analysis/latency/minimal.h \ -+ ../../analysis/latency/../../base/timed/graph.h \ -+ ../../analysis/latency/selftimed.h \ -+ ../../analysis/latency/selftimed_minimal.h \ -+ ../../analysis/latency/single_processor_random_staticorder.h \ -+ ../../analysis/mcm/mcm.h ../../analysis/mcm/../../base/timed/graph.h \ -+ ../../analysis/mcm/mcmgraph.h ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/selftimed_throughput.h \ -+ ../../analysis/throughput/../../base/timed/graph.h \ -+ ../../analysis/throughput/tdma_schedule.h \ -+ ../../analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/throughput/deadlock.h \ -+ ../../analysis/throughput/static_periodic_ning_gao.h \ -+ ../../analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../analysis/token_communication/comm_trace.h \ -+ ../../analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/maxplus/mpexplore.h \ -+ ../../analysis/maxplus/../../base/timed/graph.h \ -+ ../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../transform/model/autoconc.h \ -+ ../../transform/model/../../base/untimed/graph.h \ -+ ../../transform/model/buffersize.h \ -+ ../../transform/model/../../base/timed/graph.h ../../output/xml/xml.h \ -+ ../../output/xml/../../base/timed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_tile_allocation_loadbalance.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_tile_allocation_loadbalance.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_resource_allocation_tile_allocation_loadbalance.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_resource_allocation_tile_allocation_loadbalance.d 2022-01-07 15:11:17.114590368 +0800 -@@ -0,0 +1,118 @@ -+sdf_resource_allocation_tile_allocation_loadbalance.o: loadbalance.cc \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ loadbalance.h binding.h ../mpsoc_arch/graph.h ../mpsoc_arch/tile.h \ -+ ../mpsoc_arch/connection.h ../mpsoc_arch/component.h \ -+ ../mpsoc_arch/arch_types.h ../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../mpsoc_arch/binding.h ../mpsoc_arch/../../base/timed/graph.h \ -+ ../mpsoc_arch/../../base/timed/channel.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/graph.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/channel.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/actor.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/port.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/component.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/../../../base/base.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/../../basic_types.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../mpsoc_arch/../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../mpsoc_arch/../../base/timed/timed_types.h \ -+ ../mpsoc_arch/../../base/timed/actor.h ../mpsoc_arch/processor.h \ -+ ../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../mpsoc_arch/memory.h ../mpsoc_arch/networkinterface.h \ -+ ../../analysis/analysis.h ../../analysis/buffersizing/buffersizing.h \ -+ ../../analysis/buffersizing/buffer.h \ -+ ../../analysis/buffersizing/storage_distribution.h \ -+ ../../analysis/buffersizing/../../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/bounded_buffer.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/buffer_ning_gao.h \ -+ ../../analysis/dependency_graph/dependency_graph.h \ -+ ../../analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../analysis/latency/latency.h \ -+ ../../analysis/latency/../../base/algo/components.h \ -+ ../../analysis/latency/../../base/algo/../../../base/base.h \ -+ ../../analysis/latency/../../base/algo/../untimed/graph.h \ -+ ../../analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../analysis/latency/minimal.h \ -+ ../../analysis/latency/../../base/timed/graph.h \ -+ ../../analysis/latency/selftimed.h \ -+ ../../analysis/latency/selftimed_minimal.h \ -+ ../../analysis/latency/single_processor_random_staticorder.h \ -+ ../../analysis/mcm/mcm.h ../../analysis/mcm/../../base/timed/graph.h \ -+ ../../analysis/mcm/mcmgraph.h ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/selftimed_throughput.h \ -+ ../../analysis/throughput/../../base/timed/graph.h \ -+ ../../analysis/throughput/tdma_schedule.h \ -+ ../../analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/throughput/deadlock.h \ -+ ../../analysis/throughput/static_periodic_ning_gao.h \ -+ ../../analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../analysis/token_communication/comm_trace.h \ -+ ../../analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/maxplus/mpexplore.h \ -+ ../../analysis/maxplus/../../base/timed/graph.h \ -+ ../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../base/algo/cycle.h ../../base/algo/../untimed/graph.h \ -+ ../scheduling/scheduling.h ../scheduling/static_order_schedule.h \ -+ ../scheduling/list_scheduler.h ../scheduling/../../analysis/analysis.h \ -+ ../scheduling/priority_list_scheduler.h \ -+ ../scheduling/static_periodic_scheduler.h \ -+ ../scheduling/../../base/timed/graph.h \ -+ ../scheduling/static_periodic_scheduler_chao.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_tools_sdf3analysis_sdf3analysis.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_tools_sdf3analysis_sdf3analysis.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_tools_sdf3analysis_sdf3analysis.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_tools_sdf3analysis_sdf3analysis.d 2022-01-07 15:11:37.874587309 +0800 -@@ -0,0 +1,186 @@ -+sdf_tools_sdf3analysis_sdf3analysis.o: sdf3analysis.cc sdf3analysis.h ../../sdf.h \ -+ ../../base/untimed/graph.h ../../base/untimed/channel.h \ -+ ../../base/untimed/actor.h ../../base/untimed/port.h \ -+ ../../base/untimed/component.h ../../base/untimed/../../../base/base.h \ -+ ../../base/untimed/../../../base/exception/exception.h \ -+ ../../base/untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/untimed/../../../base/exception/../basic_types.h \ -+ ../../base/untimed/../../../base/fraction/fraction.h \ -+ ../../base/untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/untimed/../../../base/xml/xml.h \ -+ ../../base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/untimed/../../../base/math/cmath.h \ -+ ../../base/untimed/../../../base/random/random.h \ -+ ../../base/untimed/../../../base/sort/sort.h \ -+ ../../base/untimed/../../../base/time/time.h \ -+ ../../base/untimed/../../../base/time/../basic_types.h \ -+ ../../base/untimed/../../../base/time/../string/cstring.h \ -+ ../../base/untimed/../../../base/log/log.h \ -+ ../../base/untimed/../../../base/log/../string/cstring.h \ -+ ../../base/untimed/../../../base/log/../basic_types.h \ -+ ../../base/untimed/../../../base/sequence/sequence.h \ -+ ../../base/untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/untimed/../../../base/matrix/matrix.h \ -+ ../../base/untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/untimed/../../../base/maxplus/mptype.h \ -+ ../../base/untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/untimed/../../../base/lookup/clookup.h \ -+ ../../base/untimed/../../../base/basic_types.h \ -+ ../../base/untimed/../../basic_types.h \ -+ ../../base/untimed/../../../base/string/cstring.h \ -+ ../../base/untimed/../../../base/xml/xml.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/algo/acyclic.h ../../base/algo/../untimed/graph.h \ -+ ../../base/algo/components.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/connected.h ../../base/algo/cycle.h \ -+ ../../base/algo/dfs.h ../../base/algo/repetition_vector.h \ -+ ../../base/hsdf/check.h ../../base/hsdf/../untimed/graph.h \ -+ ../../analysis/analysis.h ../../analysis/buffersizing/buffersizing.h \ -+ ../../analysis/buffersizing/buffer.h \ -+ ../../analysis/buffersizing/storage_distribution.h \ -+ ../../analysis/buffersizing/../../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/bounded_buffer.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/buffer_ning_gao.h \ -+ ../../analysis/dependency_graph/dependency_graph.h \ -+ ../../analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../analysis/latency/latency.h \ -+ ../../analysis/latency/../../base/algo/components.h \ -+ ../../analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../analysis/latency/minimal.h \ -+ ../../analysis/latency/../../base/timed/graph.h \ -+ ../../analysis/latency/selftimed.h \ -+ ../../analysis/latency/selftimed_minimal.h \ -+ ../../analysis/latency/single_processor_random_staticorder.h \ -+ ../../analysis/mcm/mcm.h ../../analysis/mcm/../../base/timed/graph.h \ -+ ../../analysis/mcm/mcmgraph.h ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/selftimed_throughput.h \ -+ ../../analysis/throughput/../../base/timed/graph.h \ -+ ../../analysis/throughput/tdma_schedule.h \ -+ ../../analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/throughput/deadlock.h \ -+ ../../analysis/throughput/static_periodic_ning_gao.h \ -+ ../../analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../analysis/token_communication/comm_trace.h \ -+ ../../analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/maxplus/mpexplore.h \ -+ ../../analysis/maxplus/../../base/timed/graph.h \ -+ ../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../generate/generate.h ../../generate/../base/timed/graph.h \ -+ ../../output/buffer_throughput/buffy.h \ -+ ../../output/buffer_throughput/../../base/timed/graph.h \ -+ ../../output/dot/dot.h ../../output/dot/../../base/untimed/graph.h \ -+ ../../output/hapi/hapi.h ../../output/hapi/../../base/timed/graph.h \ -+ ../../output/html/html.h \ -+ ../../output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../output/schedule/schedule.h \ -+ ../../output/schedule/../../base/timed/graph.h ../../output/xml/xml.h \ -+ ../../output/xml/../../base/timed/graph.h \ -+ ../../resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../resource_allocation/mpsoc_arch/binding.h \ -+ ../../resource_allocation/mpsoc_arch/component.h \ -+ ../../resource_allocation/mpsoc_arch/connection.h \ -+ ../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../resource_allocation/mpsoc_arch/memory.h \ -+ ../../resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../resource_allocation/mpsoc_arch/processor.h \ -+ ../../resource_allocation/mpsoc_arch/tile.h \ -+ ../../resource_allocation/mpsoc_arch/xml.h \ -+ ../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../resource_allocation/flow/flow.h \ -+ ../../resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../resource_allocation/scheduling/scheduling.h \ -+ ../../resource_allocation/scheduling/static_order_schedule.h \ -+ ../../resource_allocation/scheduling/list_scheduler.h \ -+ ../../resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../resource_allocation/tile_allocation/binding.h \ -+ ../../resource_allocation/tile_allocation/loadbalance.h \ -+ ../../resource_allocation/tile_allocation/binding.h \ -+ ../../transform/model/autoconc.h \ -+ ../../transform/model/../../base/untimed/graph.h \ -+ ../../transform/model/buffersize.h \ -+ ../../transform/model/../../base/timed/graph.h \ -+ ../../transform/to_apg/apg.h ../../transform/to_apg/../../../base/base.h \ -+ ../../transform/to_apg/sdftoapg.h \ -+ ../../transform/to_apg/../../base/timed/graph.h \ -+ ../../transform/to_apg/apg.h ../../transform/hsdf/hsdf.h \ -+ ../../transform/hsdf/../../base/untimed/graph.h \ -+ ../../transform/hsdf/unfold.h ../../transform/misc/reverse_channels.h \ -+ ../../transform/misc/../../base/timed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_tools_sdf3arch_sdf3arch.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_tools_sdf3arch_sdf3arch.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_tools_sdf3arch_sdf3arch.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_tools_sdf3arch_sdf3arch.d 2022-01-07 15:11:34.517920281 +0800 -@@ -0,0 +1,52 @@ -+sdf_tools_sdf3arch_sdf3arch.o: sdf3arch.cc sdf3arch.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_tools_sdf3cost_sdf3cost.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_tools_sdf3cost_sdf3cost.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_tools_sdf3cost_sdf3cost.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_tools_sdf3cost_sdf3cost.d 2022-01-07 15:11:30.277920291 +0800 -@@ -0,0 +1,187 @@ -+sdf_tools_sdf3cost_sdf3cost.o: sdf3cost.cc sdf3cost.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ ../../sdf.h ../../base/untimed/graph.h ../../base/untimed/channel.h \ -+ ../../base/untimed/actor.h ../../base/untimed/port.h \ -+ ../../base/untimed/component.h ../../base/untimed/../../../base/base.h \ -+ ../../base/untimed/../../../base/basic_types.h \ -+ ../../base/untimed/../../basic_types.h \ -+ ../../base/untimed/../../../base/string/cstring.h \ -+ ../../base/untimed/../../../base/xml/xml.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/algo/acyclic.h ../../base/algo/../untimed/graph.h \ -+ ../../base/algo/components.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/connected.h ../../base/algo/cycle.h \ -+ ../../base/algo/dfs.h ../../base/algo/repetition_vector.h \ -+ ../../base/hsdf/check.h ../../base/hsdf/../untimed/graph.h \ -+ ../../analysis/analysis.h ../../analysis/buffersizing/buffersizing.h \ -+ ../../analysis/buffersizing/buffer.h \ -+ ../../analysis/buffersizing/storage_distribution.h \ -+ ../../analysis/buffersizing/../../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/bounded_buffer.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/buffer_ning_gao.h \ -+ ../../analysis/dependency_graph/dependency_graph.h \ -+ ../../analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../analysis/latency/latency.h \ -+ ../../analysis/latency/../../base/algo/components.h \ -+ ../../analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../analysis/latency/minimal.h \ -+ ../../analysis/latency/../../base/timed/graph.h \ -+ ../../analysis/latency/selftimed.h \ -+ ../../analysis/latency/selftimed_minimal.h \ -+ ../../analysis/latency/single_processor_random_staticorder.h \ -+ ../../analysis/mcm/mcm.h ../../analysis/mcm/../../base/timed/graph.h \ -+ ../../analysis/mcm/mcmgraph.h ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/selftimed_throughput.h \ -+ ../../analysis/throughput/../../base/timed/graph.h \ -+ ../../analysis/throughput/tdma_schedule.h \ -+ ../../analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/throughput/deadlock.h \ -+ ../../analysis/throughput/static_periodic_ning_gao.h \ -+ ../../analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../analysis/token_communication/comm_trace.h \ -+ ../../analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/maxplus/mpexplore.h \ -+ ../../analysis/maxplus/../../base/timed/graph.h \ -+ ../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../generate/generate.h ../../generate/../base/timed/graph.h \ -+ ../../output/buffer_throughput/buffy.h \ -+ ../../output/buffer_throughput/../../base/timed/graph.h \ -+ ../../output/dot/dot.h ../../output/dot/../../base/untimed/graph.h \ -+ ../../output/hapi/hapi.h ../../output/hapi/../../base/timed/graph.h \ -+ ../../output/html/html.h \ -+ ../../output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../output/schedule/schedule.h \ -+ ../../output/schedule/../../base/timed/graph.h ../../output/xml/xml.h \ -+ ../../output/xml/../../base/timed/graph.h \ -+ ../../resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../resource_allocation/mpsoc_arch/binding.h \ -+ ../../resource_allocation/mpsoc_arch/component.h \ -+ ../../resource_allocation/mpsoc_arch/connection.h \ -+ ../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../resource_allocation/mpsoc_arch/memory.h \ -+ ../../resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../resource_allocation/mpsoc_arch/processor.h \ -+ ../../resource_allocation/mpsoc_arch/tile.h \ -+ ../../resource_allocation/mpsoc_arch/xml.h \ -+ ../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../resource_allocation/flow/flow.h \ -+ ../../resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../resource_allocation/scheduling/scheduling.h \ -+ ../../resource_allocation/scheduling/static_order_schedule.h \ -+ ../../resource_allocation/scheduling/list_scheduler.h \ -+ ../../resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../resource_allocation/tile_allocation/binding.h \ -+ ../../resource_allocation/tile_allocation/loadbalance.h \ -+ ../../resource_allocation/tile_allocation/binding.h \ -+ ../../transform/model/autoconc.h \ -+ ../../transform/model/../../base/untimed/graph.h \ -+ ../../transform/model/buffersize.h \ -+ ../../transform/model/../../base/timed/graph.h \ -+ ../../transform/to_apg/apg.h ../../transform/to_apg/../../../base/base.h \ -+ ../../transform/to_apg/sdftoapg.h \ -+ ../../transform/to_apg/../../base/timed/graph.h \ -+ ../../transform/to_apg/apg.h ../../transform/hsdf/hsdf.h \ -+ ../../transform/hsdf/../../base/untimed/graph.h \ -+ ../../transform/hsdf/unfold.h ../../transform/misc/reverse_channels.h \ -+ ../../transform/misc/../../base/timed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_tools_sdf3ctg_sdf3ctg.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_tools_sdf3ctg_sdf3ctg.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_tools_sdf3ctg_sdf3ctg.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_tools_sdf3ctg_sdf3ctg.d 2022-01-07 15:11:32.104586886 +0800 -@@ -0,0 +1,52 @@ -+sdf_tools_sdf3ctg_sdf3ctg.o: sdf3ctg.cc sdf3ctg.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_tools_sdf3flow_sdf3flow.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_tools_sdf3flow_sdf3flow.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_tools_sdf3flow_sdf3flow.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_tools_sdf3flow_sdf3flow.d 2022-01-07 15:11:44.411255618 +0800 -@@ -0,0 +1,186 @@ -+sdf_tools_sdf3flow_sdf3flow.o: sdf3flow.cc sdf3flow.h settings.h ../../sdf.h \ -+ ../../base/untimed/graph.h ../../base/untimed/channel.h \ -+ ../../base/untimed/actor.h ../../base/untimed/port.h \ -+ ../../base/untimed/component.h ../../base/untimed/../../../base/base.h \ -+ ../../base/untimed/../../../base/exception/exception.h \ -+ ../../base/untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/untimed/../../../base/exception/../basic_types.h \ -+ ../../base/untimed/../../../base/fraction/fraction.h \ -+ ../../base/untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/untimed/../../../base/xml/xml.h \ -+ ../../base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/untimed/../../../base/math/cmath.h \ -+ ../../base/untimed/../../../base/random/random.h \ -+ ../../base/untimed/../../../base/sort/sort.h \ -+ ../../base/untimed/../../../base/time/time.h \ -+ ../../base/untimed/../../../base/time/../basic_types.h \ -+ ../../base/untimed/../../../base/time/../string/cstring.h \ -+ ../../base/untimed/../../../base/log/log.h \ -+ ../../base/untimed/../../../base/log/../string/cstring.h \ -+ ../../base/untimed/../../../base/log/../basic_types.h \ -+ ../../base/untimed/../../../base/sequence/sequence.h \ -+ ../../base/untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/untimed/../../../base/matrix/matrix.h \ -+ ../../base/untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/untimed/../../../base/maxplus/mptype.h \ -+ ../../base/untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/untimed/../../../base/lookup/clookup.h \ -+ ../../base/untimed/../../../base/basic_types.h \ -+ ../../base/untimed/../../basic_types.h \ -+ ../../base/untimed/../../../base/string/cstring.h \ -+ ../../base/untimed/../../../base/xml/xml.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/algo/acyclic.h ../../base/algo/../untimed/graph.h \ -+ ../../base/algo/components.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/connected.h ../../base/algo/cycle.h \ -+ ../../base/algo/dfs.h ../../base/algo/repetition_vector.h \ -+ ../../base/hsdf/check.h ../../base/hsdf/../untimed/graph.h \ -+ ../../analysis/analysis.h ../../analysis/buffersizing/buffersizing.h \ -+ ../../analysis/buffersizing/buffer.h \ -+ ../../analysis/buffersizing/storage_distribution.h \ -+ ../../analysis/buffersizing/../../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/bounded_buffer.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/buffer_ning_gao.h \ -+ ../../analysis/dependency_graph/dependency_graph.h \ -+ ../../analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../analysis/latency/latency.h \ -+ ../../analysis/latency/../../base/algo/components.h \ -+ ../../analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../analysis/latency/minimal.h \ -+ ../../analysis/latency/../../base/timed/graph.h \ -+ ../../analysis/latency/selftimed.h \ -+ ../../analysis/latency/selftimed_minimal.h \ -+ ../../analysis/latency/single_processor_random_staticorder.h \ -+ ../../analysis/mcm/mcm.h ../../analysis/mcm/../../base/timed/graph.h \ -+ ../../analysis/mcm/mcmgraph.h ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/selftimed_throughput.h \ -+ ../../analysis/throughput/../../base/timed/graph.h \ -+ ../../analysis/throughput/tdma_schedule.h \ -+ ../../analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/throughput/deadlock.h \ -+ ../../analysis/throughput/static_periodic_ning_gao.h \ -+ ../../analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../analysis/token_communication/comm_trace.h \ -+ ../../analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/maxplus/mpexplore.h \ -+ ../../analysis/maxplus/../../base/timed/graph.h \ -+ ../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../generate/generate.h ../../generate/../base/timed/graph.h \ -+ ../../output/buffer_throughput/buffy.h \ -+ ../../output/buffer_throughput/../../base/timed/graph.h \ -+ ../../output/dot/dot.h ../../output/dot/../../base/untimed/graph.h \ -+ ../../output/hapi/hapi.h ../../output/hapi/../../base/timed/graph.h \ -+ ../../output/html/html.h \ -+ ../../output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../output/schedule/schedule.h \ -+ ../../output/schedule/../../base/timed/graph.h ../../output/xml/xml.h \ -+ ../../output/xml/../../base/timed/graph.h \ -+ ../../resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../resource_allocation/mpsoc_arch/binding.h \ -+ ../../resource_allocation/mpsoc_arch/component.h \ -+ ../../resource_allocation/mpsoc_arch/connection.h \ -+ ../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../resource_allocation/mpsoc_arch/memory.h \ -+ ../../resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../resource_allocation/mpsoc_arch/processor.h \ -+ ../../resource_allocation/mpsoc_arch/tile.h \ -+ ../../resource_allocation/mpsoc_arch/xml.h \ -+ ../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../resource_allocation/flow/flow.h \ -+ ../../resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../resource_allocation/scheduling/scheduling.h \ -+ ../../resource_allocation/scheduling/static_order_schedule.h \ -+ ../../resource_allocation/scheduling/list_scheduler.h \ -+ ../../resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../resource_allocation/tile_allocation/binding.h \ -+ ../../resource_allocation/tile_allocation/loadbalance.h \ -+ ../../resource_allocation/tile_allocation/binding.h \ -+ ../../transform/model/autoconc.h \ -+ ../../transform/model/../../base/untimed/graph.h \ -+ ../../transform/model/buffersize.h \ -+ ../../transform/model/../../base/timed/graph.h \ -+ ../../transform/to_apg/apg.h ../../transform/to_apg/../../../base/base.h \ -+ ../../transform/to_apg/sdftoapg.h \ -+ ../../transform/to_apg/../../base/timed/graph.h \ -+ ../../transform/to_apg/apg.h ../../transform/hsdf/hsdf.h \ -+ ../../transform/hsdf/../../base/untimed/graph.h \ -+ ../../transform/hsdf/unfold.h ../../transform/misc/reverse_channels.h \ -+ ../../transform/misc/../../base/timed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_tools_sdf3flow_settings.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_tools_sdf3flow_settings.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_tools_sdf3flow_settings.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_tools_sdf3flow_settings.d 2022-01-07 15:11:45.957922849 +0800 -@@ -0,0 +1,186 @@ -+sdf_tools_sdf3flow_settings.o: settings.cc settings.h ../../sdf.h ../../base/untimed/graph.h \ -+ ../../base/untimed/channel.h ../../base/untimed/actor.h \ -+ ../../base/untimed/port.h ../../base/untimed/component.h \ -+ ../../base/untimed/../../../base/base.h \ -+ ../../base/untimed/../../../base/exception/exception.h \ -+ ../../base/untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/untimed/../../../base/exception/../basic_types.h \ -+ ../../base/untimed/../../../base/fraction/fraction.h \ -+ ../../base/untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/untimed/../../../base/xml/xml.h \ -+ ../../base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/untimed/../../../base/math/cmath.h \ -+ ../../base/untimed/../../../base/random/random.h \ -+ ../../base/untimed/../../../base/sort/sort.h \ -+ ../../base/untimed/../../../base/time/time.h \ -+ ../../base/untimed/../../../base/time/../basic_types.h \ -+ ../../base/untimed/../../../base/time/../string/cstring.h \ -+ ../../base/untimed/../../../base/log/log.h \ -+ ../../base/untimed/../../../base/log/../string/cstring.h \ -+ ../../base/untimed/../../../base/log/../basic_types.h \ -+ ../../base/untimed/../../../base/sequence/sequence.h \ -+ ../../base/untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/untimed/../../../base/matrix/matrix.h \ -+ ../../base/untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/untimed/../../../base/maxplus/mptype.h \ -+ ../../base/untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/untimed/../../../base/lookup/clookup.h \ -+ ../../base/untimed/../../../base/basic_types.h \ -+ ../../base/untimed/../../basic_types.h \ -+ ../../base/untimed/../../../base/string/cstring.h \ -+ ../../base/untimed/../../../base/xml/xml.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/algo/acyclic.h ../../base/algo/../untimed/graph.h \ -+ ../../base/algo/components.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/connected.h ../../base/algo/cycle.h \ -+ ../../base/algo/dfs.h ../../base/algo/repetition_vector.h \ -+ ../../base/hsdf/check.h ../../base/hsdf/../untimed/graph.h \ -+ ../../analysis/analysis.h ../../analysis/buffersizing/buffersizing.h \ -+ ../../analysis/buffersizing/buffer.h \ -+ ../../analysis/buffersizing/storage_distribution.h \ -+ ../../analysis/buffersizing/../../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/bounded_buffer.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/buffer_ning_gao.h \ -+ ../../analysis/dependency_graph/dependency_graph.h \ -+ ../../analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../analysis/latency/latency.h \ -+ ../../analysis/latency/../../base/algo/components.h \ -+ ../../analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../analysis/latency/minimal.h \ -+ ../../analysis/latency/../../base/timed/graph.h \ -+ ../../analysis/latency/selftimed.h \ -+ ../../analysis/latency/selftimed_minimal.h \ -+ ../../analysis/latency/single_processor_random_staticorder.h \ -+ ../../analysis/mcm/mcm.h ../../analysis/mcm/../../base/timed/graph.h \ -+ ../../analysis/mcm/mcmgraph.h ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/selftimed_throughput.h \ -+ ../../analysis/throughput/../../base/timed/graph.h \ -+ ../../analysis/throughput/tdma_schedule.h \ -+ ../../analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/throughput/deadlock.h \ -+ ../../analysis/throughput/static_periodic_ning_gao.h \ -+ ../../analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../analysis/token_communication/comm_trace.h \ -+ ../../analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/maxplus/mpexplore.h \ -+ ../../analysis/maxplus/../../base/timed/graph.h \ -+ ../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../generate/generate.h ../../generate/../base/timed/graph.h \ -+ ../../output/buffer_throughput/buffy.h \ -+ ../../output/buffer_throughput/../../base/timed/graph.h \ -+ ../../output/dot/dot.h ../../output/dot/../../base/untimed/graph.h \ -+ ../../output/hapi/hapi.h ../../output/hapi/../../base/timed/graph.h \ -+ ../../output/html/html.h \ -+ ../../output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../output/schedule/schedule.h \ -+ ../../output/schedule/../../base/timed/graph.h ../../output/xml/xml.h \ -+ ../../output/xml/../../base/timed/graph.h \ -+ ../../resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../resource_allocation/mpsoc_arch/binding.h \ -+ ../../resource_allocation/mpsoc_arch/component.h \ -+ ../../resource_allocation/mpsoc_arch/connection.h \ -+ ../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../resource_allocation/mpsoc_arch/memory.h \ -+ ../../resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../resource_allocation/mpsoc_arch/processor.h \ -+ ../../resource_allocation/mpsoc_arch/tile.h \ -+ ../../resource_allocation/mpsoc_arch/xml.h \ -+ ../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../resource_allocation/flow/flow.h \ -+ ../../resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../resource_allocation/scheduling/scheduling.h \ -+ ../../resource_allocation/scheduling/static_order_schedule.h \ -+ ../../resource_allocation/scheduling/list_scheduler.h \ -+ ../../resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../resource_allocation/tile_allocation/binding.h \ -+ ../../resource_allocation/tile_allocation/loadbalance.h \ -+ ../../resource_allocation/tile_allocation/binding.h \ -+ ../../transform/model/autoconc.h \ -+ ../../transform/model/../../base/untimed/graph.h \ -+ ../../transform/model/buffersize.h \ -+ ../../transform/model/../../base/timed/graph.h \ -+ ../../transform/to_apg/apg.h ../../transform/to_apg/../../../base/base.h \ -+ ../../transform/to_apg/sdftoapg.h \ -+ ../../transform/to_apg/../../base/timed/graph.h \ -+ ../../transform/to_apg/apg.h ../../transform/hsdf/hsdf.h \ -+ ../../transform/hsdf/../../base/untimed/graph.h \ -+ ../../transform/hsdf/unfold.h ../../transform/misc/reverse_channels.h \ -+ ../../transform/misc/../../base/timed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_tools_sdf3gast_sdf3gast.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_tools_sdf3gast_sdf3gast.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_tools_sdf3gast_sdf3gast.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_tools_sdf3gast_sdf3gast.d 2022-01-07 15:11:40.551254500 +0800 -@@ -0,0 +1,187 @@ -+sdf_tools_sdf3gast_sdf3gast.o: sdf3gast.cc sdf3gast.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/fraction.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/fraction/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/tempfile.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/tempfile/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/math/cmath.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/random/random.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sort/sort.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/time.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/time/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/log.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/log/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/sequence.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/sequence/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/matrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/matrix/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mptype.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/maxplus/mpmatrix.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/lookup/clookup.h \ -+ ../../sdf.h ../../base/untimed/graph.h ../../base/untimed/channel.h \ -+ ../../base/untimed/actor.h ../../base/untimed/port.h \ -+ ../../base/untimed/component.h ../../base/untimed/../../../base/base.h \ -+ ../../base/untimed/../../../base/basic_types.h \ -+ ../../base/untimed/../../basic_types.h \ -+ ../../base/untimed/../../../base/string/cstring.h \ -+ ../../base/untimed/../../../base/xml/xml.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/algo/acyclic.h ../../base/algo/../untimed/graph.h \ -+ ../../base/algo/components.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/connected.h ../../base/algo/cycle.h \ -+ ../../base/algo/dfs.h ../../base/algo/repetition_vector.h \ -+ ../../base/hsdf/check.h ../../base/hsdf/../untimed/graph.h \ -+ ../../analysis/analysis.h ../../analysis/buffersizing/buffersizing.h \ -+ ../../analysis/buffersizing/buffer.h \ -+ ../../analysis/buffersizing/storage_distribution.h \ -+ ../../analysis/buffersizing/../../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/bounded_buffer.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/buffer_ning_gao.h \ -+ ../../analysis/dependency_graph/dependency_graph.h \ -+ ../../analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../analysis/latency/latency.h \ -+ ../../analysis/latency/../../base/algo/components.h \ -+ ../../analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../analysis/latency/minimal.h \ -+ ../../analysis/latency/../../base/timed/graph.h \ -+ ../../analysis/latency/selftimed.h \ -+ ../../analysis/latency/selftimed_minimal.h \ -+ ../../analysis/latency/single_processor_random_staticorder.h \ -+ ../../analysis/mcm/mcm.h ../../analysis/mcm/../../base/timed/graph.h \ -+ ../../analysis/mcm/mcmgraph.h ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/selftimed_throughput.h \ -+ ../../analysis/throughput/../../base/timed/graph.h \ -+ ../../analysis/throughput/tdma_schedule.h \ -+ ../../analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/throughput/deadlock.h \ -+ ../../analysis/throughput/static_periodic_ning_gao.h \ -+ ../../analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../analysis/token_communication/comm_trace.h \ -+ ../../analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/maxplus/mpexplore.h \ -+ ../../analysis/maxplus/../../base/timed/graph.h \ -+ ../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../generate/generate.h ../../generate/../base/timed/graph.h \ -+ ../../output/buffer_throughput/buffy.h \ -+ ../../output/buffer_throughput/../../base/timed/graph.h \ -+ ../../output/dot/dot.h ../../output/dot/../../base/untimed/graph.h \ -+ ../../output/hapi/hapi.h ../../output/hapi/../../base/timed/graph.h \ -+ ../../output/html/html.h \ -+ ../../output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../output/schedule/schedule.h \ -+ ../../output/schedule/../../base/timed/graph.h ../../output/xml/xml.h \ -+ ../../output/xml/../../base/timed/graph.h \ -+ ../../resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../resource_allocation/mpsoc_arch/binding.h \ -+ ../../resource_allocation/mpsoc_arch/component.h \ -+ ../../resource_allocation/mpsoc_arch/connection.h \ -+ ../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../resource_allocation/mpsoc_arch/memory.h \ -+ ../../resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../resource_allocation/mpsoc_arch/processor.h \ -+ ../../resource_allocation/mpsoc_arch/tile.h \ -+ ../../resource_allocation/mpsoc_arch/xml.h \ -+ ../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../resource_allocation/flow/flow.h \ -+ ../../resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../resource_allocation/scheduling/scheduling.h \ -+ ../../resource_allocation/scheduling/static_order_schedule.h \ -+ ../../resource_allocation/scheduling/list_scheduler.h \ -+ ../../resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../resource_allocation/tile_allocation/binding.h \ -+ ../../resource_allocation/tile_allocation/loadbalance.h \ -+ ../../resource_allocation/tile_allocation/binding.h \ -+ ../../transform/model/autoconc.h \ -+ ../../transform/model/../../base/untimed/graph.h \ -+ ../../transform/model/buffersize.h \ -+ ../../transform/model/../../base/timed/graph.h \ -+ ../../transform/to_apg/apg.h ../../transform/to_apg/../../../base/base.h \ -+ ../../transform/to_apg/sdftoapg.h \ -+ ../../transform/to_apg/../../base/timed/graph.h \ -+ ../../transform/to_apg/apg.h ../../transform/hsdf/hsdf.h \ -+ ../../transform/hsdf/../../base/untimed/graph.h \ -+ ../../transform/hsdf/unfold.h ../../transform/misc/reverse_channels.h \ -+ ../../transform/misc/../../base/timed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_tools_sdf3generate_sdf3generate.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_tools_sdf3generate_sdf3generate.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_tools_sdf3generate_sdf3generate.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_tools_sdf3generate_sdf3generate.d 2022-01-07 15:11:36.084587074 +0800 -@@ -0,0 +1,186 @@ -+sdf_tools_sdf3generate_sdf3generate.o: sdf3generate.cc sdf3generate.h ../../sdf.h \ -+ ../../base/untimed/graph.h ../../base/untimed/channel.h \ -+ ../../base/untimed/actor.h ../../base/untimed/port.h \ -+ ../../base/untimed/component.h ../../base/untimed/../../../base/base.h \ -+ ../../base/untimed/../../../base/exception/exception.h \ -+ ../../base/untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/untimed/../../../base/exception/../basic_types.h \ -+ ../../base/untimed/../../../base/fraction/fraction.h \ -+ ../../base/untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/untimed/../../../base/xml/xml.h \ -+ ../../base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/untimed/../../../base/math/cmath.h \ -+ ../../base/untimed/../../../base/random/random.h \ -+ ../../base/untimed/../../../base/sort/sort.h \ -+ ../../base/untimed/../../../base/time/time.h \ -+ ../../base/untimed/../../../base/time/../basic_types.h \ -+ ../../base/untimed/../../../base/time/../string/cstring.h \ -+ ../../base/untimed/../../../base/log/log.h \ -+ ../../base/untimed/../../../base/log/../string/cstring.h \ -+ ../../base/untimed/../../../base/log/../basic_types.h \ -+ ../../base/untimed/../../../base/sequence/sequence.h \ -+ ../../base/untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/untimed/../../../base/matrix/matrix.h \ -+ ../../base/untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/untimed/../../../base/maxplus/mptype.h \ -+ ../../base/untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/untimed/../../../base/lookup/clookup.h \ -+ ../../base/untimed/../../../base/basic_types.h \ -+ ../../base/untimed/../../basic_types.h \ -+ ../../base/untimed/../../../base/string/cstring.h \ -+ ../../base/untimed/../../../base/xml/xml.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/algo/acyclic.h ../../base/algo/../untimed/graph.h \ -+ ../../base/algo/components.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/connected.h ../../base/algo/cycle.h \ -+ ../../base/algo/dfs.h ../../base/algo/repetition_vector.h \ -+ ../../base/hsdf/check.h ../../base/hsdf/../untimed/graph.h \ -+ ../../analysis/analysis.h ../../analysis/buffersizing/buffersizing.h \ -+ ../../analysis/buffersizing/buffer.h \ -+ ../../analysis/buffersizing/storage_distribution.h \ -+ ../../analysis/buffersizing/../../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/bounded_buffer.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/buffer_ning_gao.h \ -+ ../../analysis/dependency_graph/dependency_graph.h \ -+ ../../analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../analysis/latency/latency.h \ -+ ../../analysis/latency/../../base/algo/components.h \ -+ ../../analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../analysis/latency/minimal.h \ -+ ../../analysis/latency/../../base/timed/graph.h \ -+ ../../analysis/latency/selftimed.h \ -+ ../../analysis/latency/selftimed_minimal.h \ -+ ../../analysis/latency/single_processor_random_staticorder.h \ -+ ../../analysis/mcm/mcm.h ../../analysis/mcm/../../base/timed/graph.h \ -+ ../../analysis/mcm/mcmgraph.h ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/selftimed_throughput.h \ -+ ../../analysis/throughput/../../base/timed/graph.h \ -+ ../../analysis/throughput/tdma_schedule.h \ -+ ../../analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/throughput/deadlock.h \ -+ ../../analysis/throughput/static_periodic_ning_gao.h \ -+ ../../analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../analysis/token_communication/comm_trace.h \ -+ ../../analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/maxplus/mpexplore.h \ -+ ../../analysis/maxplus/../../base/timed/graph.h \ -+ ../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../generate/generate.h ../../generate/../base/timed/graph.h \ -+ ../../output/buffer_throughput/buffy.h \ -+ ../../output/buffer_throughput/../../base/timed/graph.h \ -+ ../../output/dot/dot.h ../../output/dot/../../base/untimed/graph.h \ -+ ../../output/hapi/hapi.h ../../output/hapi/../../base/timed/graph.h \ -+ ../../output/html/html.h \ -+ ../../output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../output/schedule/schedule.h \ -+ ../../output/schedule/../../base/timed/graph.h ../../output/xml/xml.h \ -+ ../../output/xml/../../base/timed/graph.h \ -+ ../../resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../resource_allocation/mpsoc_arch/binding.h \ -+ ../../resource_allocation/mpsoc_arch/component.h \ -+ ../../resource_allocation/mpsoc_arch/connection.h \ -+ ../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../resource_allocation/mpsoc_arch/memory.h \ -+ ../../resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../resource_allocation/mpsoc_arch/processor.h \ -+ ../../resource_allocation/mpsoc_arch/tile.h \ -+ ../../resource_allocation/mpsoc_arch/xml.h \ -+ ../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../resource_allocation/flow/flow.h \ -+ ../../resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../resource_allocation/scheduling/scheduling.h \ -+ ../../resource_allocation/scheduling/static_order_schedule.h \ -+ ../../resource_allocation/scheduling/list_scheduler.h \ -+ ../../resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../resource_allocation/tile_allocation/binding.h \ -+ ../../resource_allocation/tile_allocation/loadbalance.h \ -+ ../../resource_allocation/tile_allocation/binding.h \ -+ ../../transform/model/autoconc.h \ -+ ../../transform/model/../../base/untimed/graph.h \ -+ ../../transform/model/buffersize.h \ -+ ../../transform/model/../../base/timed/graph.h \ -+ ../../transform/to_apg/apg.h ../../transform/to_apg/../../../base/base.h \ -+ ../../transform/to_apg/sdftoapg.h \ -+ ../../transform/to_apg/../../base/timed/graph.h \ -+ ../../transform/to_apg/apg.h ../../transform/hsdf/hsdf.h \ -+ ../../transform/hsdf/../../base/untimed/graph.h \ -+ ../../transform/hsdf/unfold.h ../../transform/misc/reverse_channels.h \ -+ ../../transform/misc/../../base/timed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_tools_sdf3print_sdf3print.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_tools_sdf3print_sdf3print.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_tools_sdf3print_sdf3print.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_tools_sdf3print_sdf3print.d 2022-01-07 15:11:42.534588355 +0800 -@@ -0,0 +1,186 @@ -+sdf_tools_sdf3print_sdf3print.o: sdf3print.cc sdf3print.h ../../sdf.h \ -+ ../../base/untimed/graph.h ../../base/untimed/channel.h \ -+ ../../base/untimed/actor.h ../../base/untimed/port.h \ -+ ../../base/untimed/component.h ../../base/untimed/../../../base/base.h \ -+ ../../base/untimed/../../../base/exception/exception.h \ -+ ../../base/untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/untimed/../../../base/exception/../basic_types.h \ -+ ../../base/untimed/../../../base/fraction/fraction.h \ -+ ../../base/untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/untimed/../../../base/xml/xml.h \ -+ ../../base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/untimed/../../../base/math/cmath.h \ -+ ../../base/untimed/../../../base/random/random.h \ -+ ../../base/untimed/../../../base/sort/sort.h \ -+ ../../base/untimed/../../../base/time/time.h \ -+ ../../base/untimed/../../../base/time/../basic_types.h \ -+ ../../base/untimed/../../../base/time/../string/cstring.h \ -+ ../../base/untimed/../../../base/log/log.h \ -+ ../../base/untimed/../../../base/log/../string/cstring.h \ -+ ../../base/untimed/../../../base/log/../basic_types.h \ -+ ../../base/untimed/../../../base/sequence/sequence.h \ -+ ../../base/untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/untimed/../../../base/matrix/matrix.h \ -+ ../../base/untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/untimed/../../../base/maxplus/mptype.h \ -+ ../../base/untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/untimed/../../../base/lookup/clookup.h \ -+ ../../base/untimed/../../../base/basic_types.h \ -+ ../../base/untimed/../../basic_types.h \ -+ ../../base/untimed/../../../base/string/cstring.h \ -+ ../../base/untimed/../../../base/xml/xml.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/algo/acyclic.h ../../base/algo/../untimed/graph.h \ -+ ../../base/algo/components.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/connected.h ../../base/algo/cycle.h \ -+ ../../base/algo/dfs.h ../../base/algo/repetition_vector.h \ -+ ../../base/hsdf/check.h ../../base/hsdf/../untimed/graph.h \ -+ ../../analysis/analysis.h ../../analysis/buffersizing/buffersizing.h \ -+ ../../analysis/buffersizing/buffer.h \ -+ ../../analysis/buffersizing/storage_distribution.h \ -+ ../../analysis/buffersizing/../../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/bounded_buffer.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/buffer_ning_gao.h \ -+ ../../analysis/dependency_graph/dependency_graph.h \ -+ ../../analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../analysis/latency/latency.h \ -+ ../../analysis/latency/../../base/algo/components.h \ -+ ../../analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../analysis/latency/minimal.h \ -+ ../../analysis/latency/../../base/timed/graph.h \ -+ ../../analysis/latency/selftimed.h \ -+ ../../analysis/latency/selftimed_minimal.h \ -+ ../../analysis/latency/single_processor_random_staticorder.h \ -+ ../../analysis/mcm/mcm.h ../../analysis/mcm/../../base/timed/graph.h \ -+ ../../analysis/mcm/mcmgraph.h ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/selftimed_throughput.h \ -+ ../../analysis/throughput/../../base/timed/graph.h \ -+ ../../analysis/throughput/tdma_schedule.h \ -+ ../../analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/throughput/deadlock.h \ -+ ../../analysis/throughput/static_periodic_ning_gao.h \ -+ ../../analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../analysis/token_communication/comm_trace.h \ -+ ../../analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/maxplus/mpexplore.h \ -+ ../../analysis/maxplus/../../base/timed/graph.h \ -+ ../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../generate/generate.h ../../generate/../base/timed/graph.h \ -+ ../../output/buffer_throughput/buffy.h \ -+ ../../output/buffer_throughput/../../base/timed/graph.h \ -+ ../../output/dot/dot.h ../../output/dot/../../base/untimed/graph.h \ -+ ../../output/hapi/hapi.h ../../output/hapi/../../base/timed/graph.h \ -+ ../../output/html/html.h \ -+ ../../output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../output/schedule/schedule.h \ -+ ../../output/schedule/../../base/timed/graph.h ../../output/xml/xml.h \ -+ ../../output/xml/../../base/timed/graph.h \ -+ ../../resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../resource_allocation/mpsoc_arch/binding.h \ -+ ../../resource_allocation/mpsoc_arch/component.h \ -+ ../../resource_allocation/mpsoc_arch/connection.h \ -+ ../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../resource_allocation/mpsoc_arch/memory.h \ -+ ../../resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../resource_allocation/mpsoc_arch/processor.h \ -+ ../../resource_allocation/mpsoc_arch/tile.h \ -+ ../../resource_allocation/mpsoc_arch/xml.h \ -+ ../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../resource_allocation/flow/flow.h \ -+ ../../resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../resource_allocation/scheduling/scheduling.h \ -+ ../../resource_allocation/scheduling/static_order_schedule.h \ -+ ../../resource_allocation/scheduling/list_scheduler.h \ -+ ../../resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../resource_allocation/tile_allocation/binding.h \ -+ ../../resource_allocation/tile_allocation/loadbalance.h \ -+ ../../resource_allocation/tile_allocation/binding.h \ -+ ../../transform/model/autoconc.h \ -+ ../../transform/model/../../base/untimed/graph.h \ -+ ../../transform/model/buffersize.h \ -+ ../../transform/model/../../base/timed/graph.h \ -+ ../../transform/to_apg/apg.h ../../transform/to_apg/../../../base/base.h \ -+ ../../transform/to_apg/sdftoapg.h \ -+ ../../transform/to_apg/../../base/timed/graph.h \ -+ ../../transform/to_apg/apg.h ../../transform/hsdf/hsdf.h \ -+ ../../transform/hsdf/../../base/untimed/graph.h \ -+ ../../transform/hsdf/unfold.h ../../transform/misc/reverse_channels.h \ -+ ../../transform/misc/../../base/timed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_tools_sdf3transform_sdf3transform.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_tools_sdf3transform_sdf3transform.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_tools_sdf3transform_sdf3transform.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_tools_sdf3transform_sdf3transform.d 2022-01-07 15:11:47.797923614 +0800 -@@ -0,0 +1,186 @@ -+sdf_tools_sdf3transform_sdf3transform.o: sdf3transform.cc sdf3transform.h ../../sdf.h \ -+ ../../base/untimed/graph.h ../../base/untimed/channel.h \ -+ ../../base/untimed/actor.h ../../base/untimed/port.h \ -+ ../../base/untimed/component.h ../../base/untimed/../../../base/base.h \ -+ ../../base/untimed/../../../base/exception/exception.h \ -+ ../../base/untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/untimed/../../../base/exception/../basic_types.h \ -+ ../../base/untimed/../../../base/fraction/fraction.h \ -+ ../../base/untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/untimed/../../../base/xml/xml.h \ -+ ../../base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/untimed/../../../base/math/cmath.h \ -+ ../../base/untimed/../../../base/random/random.h \ -+ ../../base/untimed/../../../base/sort/sort.h \ -+ ../../base/untimed/../../../base/time/time.h \ -+ ../../base/untimed/../../../base/time/../basic_types.h \ -+ ../../base/untimed/../../../base/time/../string/cstring.h \ -+ ../../base/untimed/../../../base/log/log.h \ -+ ../../base/untimed/../../../base/log/../string/cstring.h \ -+ ../../base/untimed/../../../base/log/../basic_types.h \ -+ ../../base/untimed/../../../base/sequence/sequence.h \ -+ ../../base/untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/untimed/../../../base/matrix/matrix.h \ -+ ../../base/untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/untimed/../../../base/maxplus/mptype.h \ -+ ../../base/untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/untimed/../../../base/lookup/clookup.h \ -+ ../../base/untimed/../../../base/basic_types.h \ -+ ../../base/untimed/../../basic_types.h \ -+ ../../base/untimed/../../../base/string/cstring.h \ -+ ../../base/untimed/../../../base/xml/xml.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h \ -+ ../../base/algo/acyclic.h ../../base/algo/../untimed/graph.h \ -+ ../../base/algo/components.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/connected.h ../../base/algo/cycle.h \ -+ ../../base/algo/dfs.h ../../base/algo/repetition_vector.h \ -+ ../../base/hsdf/check.h ../../base/hsdf/../untimed/graph.h \ -+ ../../analysis/analysis.h ../../analysis/buffersizing/buffersizing.h \ -+ ../../analysis/buffersizing/buffer.h \ -+ ../../analysis/buffersizing/storage_distribution.h \ -+ ../../analysis/buffersizing/../../basic_types.h \ -+ ../../analysis/buffersizing/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/bounded_buffer.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../flow/types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/tile.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/connection.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/component.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/arch_types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../../base/base.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/basic_types.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/binding.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/processor.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/static_order_schedule.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/../scheduling/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/memory.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../mpsoc_arch/networkinterface.h \ -+ ../../analysis/buffersizing/../../resource_allocation/binding_aware_sdfg/../../base/timed/graph.h \ -+ ../../analysis/buffersizing/buffer_ning_gao.h \ -+ ../../analysis/dependency_graph/dependency_graph.h \ -+ ../../analysis/dependency_graph/../../base/timed/graph.h \ -+ ../../analysis/latency/latency.h \ -+ ../../analysis/latency/../../base/algo/components.h \ -+ ../../analysis/latency/../../base/algo/repetition_vector.h \ -+ ../../analysis/latency/minimal.h \ -+ ../../analysis/latency/../../base/timed/graph.h \ -+ ../../analysis/latency/selftimed.h \ -+ ../../analysis/latency/selftimed_minimal.h \ -+ ../../analysis/latency/single_processor_random_staticorder.h \ -+ ../../analysis/mcm/mcm.h ../../analysis/mcm/../../base/timed/graph.h \ -+ ../../analysis/mcm/mcmgraph.h ../../analysis/throughput/throughput.h \ -+ ../../analysis/throughput/selftimed_throughput.h \ -+ ../../analysis/throughput/../../base/timed/graph.h \ -+ ../../analysis/throughput/tdma_schedule.h \ -+ ../../analysis/throughput/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/throughput/deadlock.h \ -+ ../../analysis/throughput/static_periodic_ning_gao.h \ -+ ../../analysis/throughput/../buffersizing/storage_distribution.h \ -+ ../../analysis/token_communication/comm_trace.h \ -+ ../../analysis/token_communication/../../resource_allocation/binding_aware_sdfg/binding_aware_sdfg.h \ -+ ../../analysis/maxplus/mpexplore.h \ -+ ../../analysis/maxplus/../../base/timed/graph.h \ -+ ../../analysis/maxplus/../../../base/maxplus/maxplus.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/sdf/base/algo/repetition_vector.h \ -+ ../../generate/generate.h ../../generate/../base/timed/graph.h \ -+ ../../output/buffer_throughput/buffy.h \ -+ ../../output/buffer_throughput/../../base/timed/graph.h \ -+ ../../output/dot/dot.h ../../output/dot/../../base/untimed/graph.h \ -+ ../../output/hapi/hapi.h ../../output/hapi/../../base/timed/graph.h \ -+ ../../output/html/html.h \ -+ ../../output/html/../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/schedulingentity.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/message.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/interconnect_graph.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/link.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/slot.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/../../../basic_types.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/../../../../base/base.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/node.h \ -+ ../../output/html/../../resource_allocation/noc_allocation/problem/route.h \ -+ ../../output/schedule/schedule.h \ -+ ../../output/schedule/../../base/timed/graph.h ../../output/xml/xml.h \ -+ ../../output/xml/../../base/timed/graph.h \ -+ ../../resource_allocation/mpsoc_arch/arch_types.h \ -+ ../../resource_allocation/mpsoc_arch/binding.h \ -+ ../../resource_allocation/mpsoc_arch/component.h \ -+ ../../resource_allocation/mpsoc_arch/connection.h \ -+ ../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../resource_allocation/mpsoc_arch/memory.h \ -+ ../../resource_allocation/mpsoc_arch/networkinterface.h \ -+ ../../resource_allocation/mpsoc_arch/processor.h \ -+ ../../resource_allocation/mpsoc_arch/tile.h \ -+ ../../resource_allocation/mpsoc_arch/xml.h \ -+ ../../resource_allocation/mpsoc_arch/graph.h \ -+ ../../resource_allocation/noc_allocation/scheduler/classic.h \ -+ ../../resource_allocation/noc_allocation/scheduler/noc_scheduler.h \ -+ ../../resource_allocation/noc_allocation/scheduler/../problem/problem.h \ -+ ../../resource_allocation/noc_allocation/scheduler/../problem/packet.h \ -+ ../../resource_allocation/noc_allocation/scheduler/../problem/../../../basic_types.h \ -+ ../../resource_allocation/noc_allocation/scheduler/greedy.h \ -+ ../../resource_allocation/noc_allocation/scheduler/knowledge.h \ -+ ../../resource_allocation/noc_allocation/problem/problem.h \ -+ ../../resource_allocation/noc_allocation/scheduler/random.h \ -+ ../../resource_allocation/noc_allocation/scheduler/ripup.h \ -+ ../../resource_allocation/flow/flow.h \ -+ ../../resource_allocation/flow/../tile_allocation/binding.h \ -+ ../../resource_allocation/flow/../tile_allocation/../mpsoc_arch/graph.h \ -+ ../../resource_allocation/flow/../tile_allocation/../../analysis/analysis.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/nocmapping.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../scheduler/noc_scheduler.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../../../base/timed/graph.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../../mpsoc_arch/graph.h \ -+ ../../resource_allocation/flow/../noc_allocation/mapping/../../flow/types.h \ -+ ../../resource_allocation/scheduling/scheduling.h \ -+ ../../resource_allocation/scheduling/static_order_schedule.h \ -+ ../../resource_allocation/scheduling/list_scheduler.h \ -+ ../../resource_allocation/scheduling/../../analysis/analysis.h \ -+ ../../resource_allocation/scheduling/priority_list_scheduler.h \ -+ ../../resource_allocation/scheduling/static_periodic_scheduler.h \ -+ ../../resource_allocation/scheduling/../../base/timed/graph.h \ -+ ../../resource_allocation/scheduling/static_periodic_scheduler_chao.h \ -+ ../../resource_allocation/tile_allocation/binding.h \ -+ ../../resource_allocation/tile_allocation/loadbalance.h \ -+ ../../resource_allocation/tile_allocation/binding.h \ -+ ../../transform/model/autoconc.h \ -+ ../../transform/model/../../base/untimed/graph.h \ -+ ../../transform/model/buffersize.h \ -+ ../../transform/model/../../base/timed/graph.h \ -+ ../../transform/to_apg/apg.h ../../transform/to_apg/../../../base/base.h \ -+ ../../transform/to_apg/sdftoapg.h \ -+ ../../transform/to_apg/../../base/timed/graph.h \ -+ ../../transform/to_apg/apg.h ../../transform/hsdf/hsdf.h \ -+ ../../transform/hsdf/../../base/untimed/graph.h \ -+ ../../transform/hsdf/unfold.h ../../transform/misc/reverse_channels.h \ -+ ../../transform/misc/../../base/timed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_transform_hsdf_hsdf.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_transform_hsdf_hsdf.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_transform_hsdf_hsdf.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_transform_hsdf_hsdf.d 2022-01-07 15:11:20.607922295 +0800 -@@ -0,0 +1,60 @@ -+sdf_transform_hsdf_hsdf.o: hsdf.cc hsdf.h ../../base/untimed/graph.h \ -+ ../../base/untimed/channel.h ../../base/untimed/actor.h \ -+ ../../base/untimed/port.h ../../base/untimed/component.h \ -+ ../../base/untimed/../../../base/base.h \ -+ ../../base/untimed/../../../base/exception/exception.h \ -+ ../../base/untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/untimed/../../../base/exception/../basic_types.h \ -+ ../../base/untimed/../../../base/fraction/fraction.h \ -+ ../../base/untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/untimed/../../../base/xml/xml.h \ -+ ../../base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/untimed/../../../base/math/cmath.h \ -+ ../../base/untimed/../../../base/random/random.h \ -+ ../../base/untimed/../../../base/sort/sort.h \ -+ ../../base/untimed/../../../base/time/time.h \ -+ ../../base/untimed/../../../base/time/../basic_types.h \ -+ ../../base/untimed/../../../base/time/../string/cstring.h \ -+ ../../base/untimed/../../../base/log/log.h \ -+ ../../base/untimed/../../../base/log/../string/cstring.h \ -+ ../../base/untimed/../../../base/log/../basic_types.h \ -+ ../../base/untimed/../../../base/sequence/sequence.h \ -+ ../../base/untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/untimed/../../../base/matrix/matrix.h \ -+ ../../base/untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/untimed/../../../base/maxplus/mptype.h \ -+ ../../base/untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/untimed/../../../base/lookup/clookup.h \ -+ ../../base/untimed/../../../base/basic_types.h \ -+ ../../base/untimed/../../basic_types.h \ -+ ../../base/untimed/../../../base/string/cstring.h \ -+ ../../base/untimed/../../../base/xml/xml.h \ -+ ../../base/algo/repetition_vector.h ../../base/algo/../../../base/base.h \ -+ ../../base/algo/../untimed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_transform_hsdf_unfold.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_transform_hsdf_unfold.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_transform_hsdf_unfold.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_transform_hsdf_unfold.d 2022-01-07 15:11:21.681255268 +0800 -@@ -0,0 +1,59 @@ -+sdf_transform_hsdf_unfold.o: unfold.cc unfold.h ../../base/untimed/graph.h \ -+ ../../base/untimed/channel.h ../../base/untimed/actor.h \ -+ ../../base/untimed/port.h ../../base/untimed/component.h \ -+ ../../base/untimed/../../../base/base.h \ -+ ../../base/untimed/../../../base/exception/exception.h \ -+ ../../base/untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/untimed/../../../base/exception/../basic_types.h \ -+ ../../base/untimed/../../../base/fraction/fraction.h \ -+ ../../base/untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/untimed/../../../base/xml/xml.h \ -+ ../../base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/untimed/../../../base/math/cmath.h \ -+ ../../base/untimed/../../../base/random/random.h \ -+ ../../base/untimed/../../../base/sort/sort.h \ -+ ../../base/untimed/../../../base/time/time.h \ -+ ../../base/untimed/../../../base/time/../basic_types.h \ -+ ../../base/untimed/../../../base/time/../string/cstring.h \ -+ ../../base/untimed/../../../base/log/log.h \ -+ ../../base/untimed/../../../base/log/../string/cstring.h \ -+ ../../base/untimed/../../../base/log/../basic_types.h \ -+ ../../base/untimed/../../../base/sequence/sequence.h \ -+ ../../base/untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/untimed/../../../base/matrix/matrix.h \ -+ ../../base/untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/untimed/../../../base/maxplus/mptype.h \ -+ ../../base/untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/untimed/../../../base/lookup/clookup.h \ -+ ../../base/untimed/../../../base/basic_types.h \ -+ ../../base/untimed/../../basic_types.h \ -+ ../../base/untimed/../../../base/string/cstring.h \ -+ ../../base/untimed/../../../base/xml/xml.h ../../base/hsdf/check.h \ -+ ../../base/hsdf/../untimed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_transform_misc_reverse_channels.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_transform_misc_reverse_channels.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_transform_misc_reverse_channels.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_transform_misc_reverse_channels.d 2022-01-07 15:11:22.974588211 +0800 -@@ -0,0 +1,62 @@ -+sdf_transform_misc_reverse_channels.o: reverse_channels.cc reverse_channels.h \ -+ ../../base/timed/graph.h ../../base/timed/channel.h \ -+ ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_transform_model_autoconc.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_transform_model_autoconc.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_transform_model_autoconc.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_transform_model_autoconc.d 2022-01-07 15:11:24.164587901 +0800 -@@ -0,0 +1,58 @@ -+sdf_transform_model_autoconc.o: autoconc.cc autoconc.h ../../base/untimed/graph.h \ -+ ../../base/untimed/channel.h ../../base/untimed/actor.h \ -+ ../../base/untimed/port.h ../../base/untimed/component.h \ -+ ../../base/untimed/../../../base/base.h \ -+ ../../base/untimed/../../../base/exception/exception.h \ -+ ../../base/untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/untimed/../../../base/exception/../basic_types.h \ -+ ../../base/untimed/../../../base/fraction/fraction.h \ -+ ../../base/untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/untimed/../../../base/xml/xml.h \ -+ ../../base/untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/untimed/../../../base/math/cmath.h \ -+ ../../base/untimed/../../../base/random/random.h \ -+ ../../base/untimed/../../../base/sort/sort.h \ -+ ../../base/untimed/../../../base/time/time.h \ -+ ../../base/untimed/../../../base/time/../basic_types.h \ -+ ../../base/untimed/../../../base/time/../string/cstring.h \ -+ ../../base/untimed/../../../base/log/log.h \ -+ ../../base/untimed/../../../base/log/../string/cstring.h \ -+ ../../base/untimed/../../../base/log/../basic_types.h \ -+ ../../base/untimed/../../../base/sequence/sequence.h \ -+ ../../base/untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/untimed/../../../base/matrix/matrix.h \ -+ ../../base/untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/untimed/../../../base/maxplus/mptype.h \ -+ ../../base/untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/untimed/../../../base/lookup/clookup.h \ -+ ../../base/untimed/../../../base/basic_types.h \ -+ ../../base/untimed/../../basic_types.h \ -+ ../../base/untimed/../../../base/string/cstring.h \ -+ ../../base/untimed/../../../base/xml/xml.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_transform_model_buffer_capacity_constrained.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_transform_model_buffer_capacity_constrained.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_transform_model_buffer_capacity_constrained.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_transform_model_buffer_capacity_constrained.d 2022-01-07 15:11:25.094587685 +0800 -@@ -0,0 +1,66 @@ -+sdf_transform_model_buffer_capacity_constrained.o: buffer_capacity_constrained.cc \ -+ buffersize.h ../../base/timed/graph.h ../../base/timed/channel.h \ -+ ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h autoconc.h \ -+ ../../base/untimed/graph.h ../../base/hsdf/check.h \ -+ ../../base/hsdf/../untimed/graph.h ../../analysis/mcm/mcm.h \ -+ ../../analysis/mcm/../../base/timed/graph.h \ -+ ../../analysis/mcm/mcmgraph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_transform_model_buffersize.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_transform_model_buffersize.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_transform_model_buffersize.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_transform_model_buffersize.d 2022-01-07 15:11:26.157920805 +0800 -@@ -0,0 +1,61 @@ -+sdf_transform_model_buffersize.o: buffersize.cc buffersize.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_transform_to_apg_apg.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_transform_to_apg_apg.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_transform_to_apg_apg.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_transform_to_apg_apg.d 2022-01-07 15:11:27.424587261 +0800 -@@ -0,0 +1,41 @@ -+sdf_transform_to_apg_apg.o: apg.cc apg.h ../../../base/base.h \ -+ ../../../base/exception/exception.h \ -+ ../../../base/exception/../string/cstring.h \ -+ ../../../base/exception/../string/../basic_types.h \ -+ ../../../base/exception/../basic_types.h \ -+ ../../../base/fraction/fraction.h \ -+ ../../../base/fraction/../basic_types.h \ -+ ../../../base/fraction/../math/cmath.h \ -+ ../../../base/fraction/../string/cstring.h ../../../base/xml/xml.h \ -+ ../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../../base/tempfile/tempfile.h \ -+ ../../../base/tempfile/../string/cstring.h ../../../base/math/cmath.h \ -+ ../../../base/random/random.h ../../../base/sort/sort.h \ -+ ../../../base/time/time.h ../../../base/time/../basic_types.h \ -+ ../../../base/time/../string/cstring.h ../../../base/log/log.h \ -+ ../../../base/log/../string/cstring.h ../../../base/log/../basic_types.h \ -+ ../../../base/sequence/sequence.h \ -+ ../../../base/sequence/../basic_types.h ../../../base/matrix/matrix.h \ -+ ../../../base/matrix/../basic_types.h ../../../base/maxplus/maxplus.h \ -+ ../../../base/maxplus/mptype.h ../../../base/maxplus/../basic_types.h \ -+ ../../../base/maxplus/../string/cstring.h \ -+ ../../../base/maxplus/mpmatrix.h ../../../base/lookup/clookup.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/sdf_transform_to_apg_sdftoapg.d sdf3_custom/sdf3/build/work/Linux/dep/sdf_transform_to_apg_sdftoapg.d ---- sdf3-backup/sdf3/build/work/Linux/dep/sdf_transform_to_apg_sdftoapg.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/sdf_transform_to_apg_sdftoapg.d 2022-01-07 15:11:28.514587117 +0800 -@@ -0,0 +1,64 @@ -+sdf_transform_to_apg_sdftoapg.o: sdftoapg.cc sdftoapg.h ../../base/timed/graph.h \ -+ ../../base/timed/channel.h ../../base/timed/../untimed/graph.h \ -+ ../../base/timed/../untimed/channel.h \ -+ ../../base/timed/../untimed/actor.h ../../base/timed/../untimed/port.h \ -+ ../../base/timed/../untimed/component.h \ -+ ../../base/timed/../untimed/../../../base/base.h \ -+ ../../base/timed/../untimed/../../../base/exception/exception.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/exception/../string/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/exception/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/fraction.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/fraction/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/../untimed/../../../base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/tempfile.h \ -+ ../../base/timed/../untimed/../../../base/tempfile/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/math/cmath.h \ -+ ../../base/timed/../untimed/../../../base/random/random.h \ -+ ../../base/timed/../untimed/../../../base/sort/sort.h \ -+ ../../base/timed/../untimed/../../../base/time/time.h \ -+ ../../base/timed/../untimed/../../../base/time/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/time/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/log.h \ -+ ../../base/timed/../untimed/../../../base/log/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/log/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/sequence/sequence.h \ -+ ../../base/timed/../untimed/../../../base/sequence/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/matrix/matrix.h \ -+ ../../base/timed/../untimed/../../../base/matrix/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/maxplus.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mptype.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/../string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/maxplus/mpmatrix.h \ -+ ../../base/timed/../untimed/../../../base/lookup/clookup.h \ -+ ../../base/timed/../untimed/../../../base/basic_types.h \ -+ ../../base/timed/../untimed/../../basic_types.h \ -+ ../../base/timed/../untimed/../../../base/string/cstring.h \ -+ ../../base/timed/../untimed/../../../base/xml/xml.h \ -+ ../../base/timed/timed_types.h ../../base/timed/actor.h apg.h \ -+ ../../../base/base.h ../../base/hsdf/check.h \ -+ ../../base/hsdf/../untimed/graph.h ../hsdf/unfold.h \ -+ ../hsdf/../../base/untimed/graph.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/tools_test_runtest.d sdf3_custom/sdf3/build/work/Linux/dep/tools_test_runtest.d ---- sdf3-backup/sdf3/build/work/Linux/dep/tools_test_runtest.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/tools_test_runtest.d 2021-11-25 05:04:09.673624427 +0800 -@@ -0,0 +1,10 @@ -+tools_test_runtest.o: runtest.cc runtest.h tester.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/shell/dirs.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/shell/shell.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/shell/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/shell/../exception/exception.h -diff --color -ruN sdf3-backup/sdf3/build/work/Linux/dep/tools_test_tester.d sdf3_custom/sdf3/build/work/Linux/dep/tools_test_tester.d ---- sdf3-backup/sdf3/build/work/Linux/dep/tools_test_tester.d 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/build/work/Linux/dep/tools_test_tester.d 2022-01-07 15:17:18.852669592 +0800 -@@ -0,0 +1,31 @@ -+tools_test_tester.o: tester.cc tester.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/string/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/shell/dirs.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/exception/../basic_types.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/shell/shell.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/shell/../string/cstring.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/shell/../exception/exception.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/xml.h \ -+ /home/jaime/Documents/research/kiter-jaime/tools/sdf3/sdf3_custom/sdf3/base/xml/../string/cstring.h \ -+ /usr/include/libxml2/libxml/parser.h \ -+ /usr/include/libxml2/libxml/xmlversion.h \ -+ /usr/include/libxml2/libxml/xmlexports.h \ -+ /usr/include/libxml2/libxml/tree.h \ -+ /usr/include/libxml2/libxml/xmlstring.h \ -+ /usr/include/libxml2/libxml/xmlregexp.h \ -+ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ -+ /usr/include/libxml2/libxml/valid.h \ -+ /usr/include/libxml2/libxml/xmlerror.h \ -+ /usr/include/libxml2/libxml/list.h \ -+ /usr/include/libxml2/libxml/xmlautomata.h \ -+ /usr/include/libxml2/libxml/entities.h \ -+ /usr/include/libxml2/libxml/encoding.h \ -+ /usr/include/libxml2/libxml/xmlIO.h \ -+ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX2.h \ -+ /usr/include/libxml2/libxml/xlink.h \ -+ /usr/include/libxml2/libxml/xmlmemory.h \ -+ /usr/include/libxml2/libxml/threads.h \ -+ /usr/include/libxml2/libxml/xmlschemas.h -Binary files sdf3-backup/sdf3/build/work/Linux/lib/libsdf3-base.a and sdf3_custom/sdf3/build/work/Linux/lib/libsdf3-base.a differ -Binary files sdf3-backup/sdf3/build/work/Linux/lib/libsdf3-base.so and sdf3_custom/sdf3/build/work/Linux/lib/libsdf3-base.so differ -Binary files sdf3-backup/sdf3/build/work/Linux/lib/libsdf3-csdf.a and sdf3_custom/sdf3/build/work/Linux/lib/libsdf3-csdf.a differ -Binary files sdf3-backup/sdf3/build/work/Linux/lib/libsdf3-csdf.so and sdf3_custom/sdf3/build/work/Linux/lib/libsdf3-csdf.so differ -Binary files sdf3-backup/sdf3/build/work/Linux/lib/libsdf3-fsmsadf.a and sdf3_custom/sdf3/build/work/Linux/lib/libsdf3-fsmsadf.a differ -Binary files sdf3-backup/sdf3/build/work/Linux/lib/libsdf3-fsmsadf.so and sdf3_custom/sdf3/build/work/Linux/lib/libsdf3-fsmsadf.so differ -Binary files sdf3-backup/sdf3/build/work/Linux/lib/libsdf3-sadf.a and sdf3_custom/sdf3/build/work/Linux/lib/libsdf3-sadf.a differ -Binary files sdf3-backup/sdf3/build/work/Linux/lib/libsdf3-sadf.so and sdf3_custom/sdf3/build/work/Linux/lib/libsdf3-sadf.so differ -Binary files sdf3-backup/sdf3/build/work/Linux/lib/libsdf3-sdf.a and sdf3_custom/sdf3/build/work/Linux/lib/libsdf3-sdf.a differ -Binary files sdf3-backup/sdf3/build/work/Linux/lib/libsdf3-sdf.so and sdf3_custom/sdf3/build/work/Linux/lib/libsdf3-sdf.so differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/base_exception_exception.o and sdf3_custom/sdf3/build/work/Linux/obj/base_exception_exception.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/base_fsm_fsm.o and sdf3_custom/sdf3/build/work/Linux/obj/base_fsm_fsm.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/base_log_log.o and sdf3_custom/sdf3/build/work/Linux/obj/base_log_log.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/base_matrix_matrix.o and sdf3_custom/sdf3/build/work/Linux/obj/base_matrix_matrix.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/base_maxplus_mpmatrix.o and sdf3_custom/sdf3/build/work/Linux/obj/base_maxplus_mpmatrix.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/base_shell_dirs.o and sdf3_custom/sdf3/build/work/Linux/obj/base_shell_dirs.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/base_shell_shellnix.o and sdf3_custom/sdf3/build/work/Linux/obj/base_shell_shellnix.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/base_shell_shell.o and sdf3_custom/sdf3/build/work/Linux/obj/base_shell_shell.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/base_shell_shellwin.o and sdf3_custom/sdf3/build/work/Linux/obj/base_shell_shellwin.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/base_string_cstring.o and sdf3_custom/sdf3/build/work/Linux/obj/base_string_cstring.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/base_tempfile_tempfile.o and sdf3_custom/sdf3/build/work/Linux/obj/base_tempfile_tempfile.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/base_time_time.o and sdf3_custom/sdf3/build/work/Linux/obj/base_time_time.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/base_xml_xml.o and sdf3_custom/sdf3/build/work/Linux/obj/base_xml_xml.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/csdf_analysis_buffersizing_buffer.o and sdf3_custom/sdf3/build/work/Linux/obj/csdf_analysis_buffersizing_buffer.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/csdf_analysis_throughput_selftimed_throughput.o and sdf3_custom/sdf3/build/work/Linux/obj/csdf_analysis_throughput_selftimed_throughput.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/csdf_base_algo_components.o and sdf3_custom/sdf3/build/work/Linux/obj/csdf_base_algo_components.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/csdf_base_algo_dfs.o and sdf3_custom/sdf3/build/work/Linux/obj/csdf_base_algo_dfs.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/csdf_base_timed_actor.o and sdf3_custom/sdf3/build/work/Linux/obj/csdf_base_timed_actor.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/csdf_base_timed_channel.o and sdf3_custom/sdf3/build/work/Linux/obj/csdf_base_timed_channel.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/csdf_base_timed_graph.o and sdf3_custom/sdf3/build/work/Linux/obj/csdf_base_timed_graph.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/csdf_base_untimed_actor.o and sdf3_custom/sdf3/build/work/Linux/obj/csdf_base_untimed_actor.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/csdf_base_untimed_channel.o and sdf3_custom/sdf3/build/work/Linux/obj/csdf_base_untimed_channel.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/csdf_base_untimed_component.o and sdf3_custom/sdf3/build/work/Linux/obj/csdf_base_untimed_component.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/csdf_base_untimed_graph.o and sdf3_custom/sdf3/build/work/Linux/obj/csdf_base_untimed_graph.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/csdf_base_untimed_port.o and sdf3_custom/sdf3/build/work/Linux/obj/csdf_base_untimed_port.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/csdf_generate_generate.o and sdf3_custom/sdf3/build/work/Linux/obj/csdf_generate_generate.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/csdf_output_buffer_throughput_buffy.o and sdf3_custom/sdf3/build/work/Linux/obj/csdf_output_buffer_throughput_buffy.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/csdf_output_xml_xml.o and sdf3_custom/sdf3/build/work/Linux/obj/csdf_output_xml_xml.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/csdf_tools_sdf3analysis_sdf3analysis.o and sdf3_custom/sdf3/build/work/Linux/obj/csdf_tools_sdf3analysis_sdf3analysis.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/csdf_tools_sdf3generate_sdf3generate.o and sdf3_custom/sdf3/build/work/Linux/obj/csdf_tools_sdf3generate_sdf3generate.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/csdf_tools_sdf3print_sdf3print.o and sdf3_custom/sdf3/build/work/Linux/obj/csdf_tools_sdf3print_sdf3print.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/csdf_tools_sdf3transform_sdf3transform.o and sdf3_custom/sdf3/build/work/Linux/obj/csdf_tools_sdf3transform_sdf3transform.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/csdf_transform_to_sdf_sdftocsdf.o and sdf3_custom/sdf3/build/work/Linux/obj/csdf_transform_to_sdf_sdftocsdf.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/csdf_transform_to_wc_fsm_sadf_csdftowcfsmsadf.o and sdf3_custom/sdf3/build/work/Linux/obj/csdf_transform_to_wc_fsm_sadf_csdftowcfsmsadf.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_analysis_base_repetition_vector.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_analysis_base_repetition_vector.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_analysis_maxplus_mpexplore.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_analysis_maxplus_mpexplore.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_analysis_throughput_fsm_ref_schedule.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_analysis_throughput_fsm_ref_schedule.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_analysis_throughput_fsm_scenario_transitions.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_analysis_throughput_fsm_scenario_transitions.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_analysis_throughput_maxplusautomaton.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_analysis_throughput_maxplusautomaton.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_analysis_throughput_scenariograph.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_analysis_throughput_scenariograph.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_analysis_throughput_statespace.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_analysis_throughput_statespace.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_analysis_throughput_thrutils.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_analysis_throughput_thrutils.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_base_actor.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_base_actor.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_base_channel.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_base_channel.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_base_component.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_base_component.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_base_fsm.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_base_fsm.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_base_graph.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_base_graph.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_base_port.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_base_port.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_base_scenario.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_base_scenario.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_base_type.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_base_type.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_generate_generate.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_generate_generate.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_output_html_html.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_output_html_html.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_base_platform_base_flow.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_base_platform_base_flow.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_base_platform_base_memory.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_base_platform_base_memory.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_base_platform_base_tile.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_base_platform_base_tile.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_base_platform_binding_aware_graph_binding_aware_graph.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_base_platform_binding_aware_graph_binding_aware_graph.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_base_platform_conversion_input_conversion.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_base_platform_conversion_input_conversion.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_base_platform_conversion_output_conversion.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_base_platform_conversion_output_conversion.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_base_platform_memory_memory.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_base_platform_memory_memory.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_base_platform_tile_binding.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_base_platform_tile_binding.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_base_platform_tile_graph_binding.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_base_platform_tile_graph_binding.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_compsoc_platform_base_flow.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_compsoc_platform_base_flow.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_compsoc_platform_binding_aware_graph_binding_aware_graph.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_compsoc_platform_binding_aware_graph_binding_aware_graph.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_compsoc_platform_conversion_helper.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_compsoc_platform_conversion_helper.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_compsoc_platform_conversion_input_conversion.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_compsoc_platform_conversion_input_conversion.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_compsoc_platform_conversion_output_conversion.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_compsoc_platform_conversion_output_conversion.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_compsoc_platform_memory_memory.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_compsoc_platform_memory_memory.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_compsoc_platform_tile_binding.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_compsoc_platform_tile_binding.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_compsoc_platform_tile_graph_binding.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_compsoc_platform_tile_graph_binding.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_mamps_platform_base_flow.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_mamps_platform_base_flow.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_mamps_platform_binding_aware_graph_binding_aware_graph.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_mamps_platform_binding_aware_graph_binding_aware_graph.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_mamps_platform_conversion_input_conversion.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_mamps_platform_conversion_input_conversion.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_mamps_platform_conversion_output_conversion.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_mamps_platform_conversion_output_conversion.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_mamps_platform_tile_binding.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_mamps_platform_tile_binding.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_mamps_platform_tile_graph_binding.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_mamps_platform_tile_graph_binding.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_virtual_platform_base_flow.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_virtual_platform_base_flow.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_virtual_platform_binding_aware_graph_binding_aware_graph.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_virtual_platform_binding_aware_graph_binding_aware_graph.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_virtual_platform_conversion_input_conversion.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_virtual_platform_conversion_input_conversion.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_virtual_platform_conversion_output_conversion.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_virtual_platform_conversion_output_conversion.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_virtual_platform_memory_memory.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_virtual_platform_memory_memory.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_virtual_platform_tile_binding.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_virtual_platform_tile_binding.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_virtual_platform_tile_graph_binding.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_flow_virtual_platform_tile_graph_binding.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_binding_connection.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_binding_connection.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_binding_constraint.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_binding_constraint.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_binding_graph.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_binding_graph.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_binding_memory.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_binding_memory.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_binding_networkinterface.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_binding_networkinterface.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_binding_processor.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_binding_processor.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_binding_tile.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_binding_tile.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_graph_connection.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_graph_connection.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_graph_graph.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_graph_graph.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_graph_memory.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_graph_memory.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_graph_networkinterface.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_graph_networkinterface.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_graph_processor.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_graph_processor.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_graph_tile.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_platform_graph_tile.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_scheduling_earliest_deadline_first_edf.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_scheduling_earliest_deadline_first_edf.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_scheduling_earliest_deadline_first_precedence_graph.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_scheduling_earliest_deadline_first_precedence_graph.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_scheduling_static_order_static_order_schedule.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_resource_allocation_scheduling_static_order_static_order_schedule.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_tools_base_tools.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_tools_base_tools.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_tools_sdf3analyze_sdf3analyze.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_tools_sdf3analyze_sdf3analyze.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_tools_sdf3flow-mnemee_sdf3flow.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_tools_sdf3flow-mnemee_sdf3flow.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_tools_sdf3flow-mnemee_settings.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_tools_sdf3flow-mnemee_settings.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_tools_sdf3flow_sdf3flow.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_tools_sdf3flow_sdf3flow.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_tools_sdf3flow_settings.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_tools_sdf3flow_settings.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_tools_sdf3generate_sdf3generate.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_tools_sdf3generate_sdf3generate.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_tools_sdf3inputconvert_sdf3inputconvert.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_tools_sdf3inputconvert_sdf3inputconvert.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_tools_sdf3inputconvert_settings.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_tools_sdf3inputconvert_settings.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_tools_sdf3outputconvert_sdf3outputconvert.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_tools_sdf3outputconvert_sdf3outputconvert.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_tools_sdf3outputconvert_settings.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_tools_sdf3outputconvert_settings.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_tools_sdf3transform_sdf3transform.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_tools_sdf3transform_sdf3transform.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_transform_auto-concurrency_auto-concurrency.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_transform_auto-concurrency_auto-concurrency.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_transform_model-static-order_hsdf-bambha.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_transform_model-static-order_hsdf-bambha.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/fsmsadf_transform_worst-case_worst-case.o and sdf3_custom/sdf3/build/work/Linux/obj/fsmsadf_transform_worst-case_worst-case.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_analysis_channel_sadf_buffer_occupancy.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_analysis_channel_sadf_buffer_occupancy.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_analysis_graph_sadf_state_space.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_analysis_graph_sadf_state_space.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_analysis_process_sadf_deadline_miss.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_analysis_process_sadf_deadline_miss.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_analysis_process_sadf_inter_firing_latency.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_analysis_process_sadf_inter_firing_latency.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_analysis_process_sadf_response_delay.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_analysis_process_sadf_response_delay.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_analysis_schedulers_sadf_asap.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_analysis_schedulers_sadf_asap.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_analysis_schedulers_sadf_asap_reduced.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_analysis_schedulers_sadf_asap_reduced.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_base_parser_sadf_parser.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_base_parser_sadf_parser.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_base_sadf_sadf_channel.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_base_sadf_sadf_channel.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_base_sadf_sadf_component.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_base_sadf_sadf_component.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_base_sadf_sadf_graph.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_base_sadf_sadf_graph.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_base_sadf_sadf_markovchain.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_base_sadf_sadf_markovchain.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_base_sadf_sadf_process.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_base_sadf_sadf_process.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_base_sadf_sadf_profile.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_base_sadf_sadf_profile.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_base_tps_sadf_channel_status.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_base_tps_sadf_channel_status.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_base_tps_sadf_configuration.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_base_tps_sadf_configuration.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_base_tps_sadf_control_status.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_base_tps_sadf_control_status.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_base_tps_sadf_detector_status.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_base_tps_sadf_detector_status.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_base_tps_sadf_kernel_status.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_base_tps_sadf_kernel_status.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_base_tps_sadf_tps.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_base_tps_sadf_tps.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_base_tps_sadf_transition.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_base_tps_sadf_transition.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_print_dot_sadf2dot.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_print_dot_sadf2dot.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_print_html_sadf2html.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_print_html_sadf2html.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_print_poosl_sadf2poosl_cluster.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_print_poosl_sadf2poosl_cluster.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_print_poosl_sadf2poosl_data.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_print_poosl_sadf2poosl_data.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_print_poosl_sadf2poosl.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_print_poosl_sadf2poosl.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_print_poosl_sadf2poosl_process.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_print_poosl_sadf2poosl_process.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_print_xml_sadf2xml.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_print_xml_sadf2xml.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_simulation_settings_sadf_settings.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_simulation_settings_sadf_settings.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_tools_sdf3analyze_sdf3analyze.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_tools_sdf3analyze_sdf3analyze.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_tools_sdf3convert_csdf2sadf_sdf3convert.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_tools_sdf3convert_csdf2sadf_sdf3convert.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_tools_sdf3convert_sadf2csdf_sdf3convert.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_tools_sdf3convert_sadf2csdf_sdf3convert.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_tools_sdf3convert_sadf2fsmsadf_sdf3convert.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_tools_sdf3convert_sadf2fsmsadf_sdf3convert.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_tools_sdf3convert_sadf2sdf_sdf3convert.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_tools_sdf3convert_sadf2sdf_sdf3convert.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_tools_sdf3convert_sdf2sadf_sdf3convert.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_tools_sdf3convert_sdf2sadf_sdf3convert.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_tools_sdf3print_sdf3print.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_tools_sdf3print_sdf3print.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_tools_sdf3transform_sdf3transform.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_tools_sdf3transform_sdf3transform.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_tools_sdf3verify_sdf3verify.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_tools_sdf3verify_sdf3verify.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_transformation_csdf_csdf2sadf.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_transformation_csdf_csdf2sadf.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_transformation_csdf_sadf2csdf.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_transformation_csdf_sadf2csdf.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_transformation_fsmsadf_sadf2fsmsadf.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_transformation_fsmsadf_sadf2fsmsadf.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_transformation_scenario_sadf_collection.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_transformation_scenario_sadf_collection.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_transformation_scenario_sadf_fix_scenario.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_transformation_scenario_sadf_fix_scenario.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_transformation_sdf_sadf2sdf.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_transformation_sdf_sadf2sdf.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_transformation_sdf_sdf2sadf.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_transformation_sdf_sdf2sadf.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_transformation_timing_sadf_timing.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_transformation_timing_sadf_timing.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_verification_consistency_sadf_consistency.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_verification_consistency_sadf_consistency.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_verification_moc_sadf_moc.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_verification_moc_sadf_moc.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_verification_simple_sadf_ergodic.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_verification_simple_sadf_ergodic.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sadf_verification_simple_sadf_simple.o and sdf3_custom/sdf3/build/work/Linux/obj/sadf_verification_simple_sadf_simple.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_analysis_buffersizing_bounded_buffer.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_analysis_buffersizing_bounded_buffer.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_analysis_buffersizing_buffer_capacity_constrained.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_analysis_buffersizing_buffer_capacity_constrained.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_analysis_buffersizing_buffer_ning_gao.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_analysis_buffersizing_buffer_ning_gao.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_analysis_buffersizing_buffer.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_analysis_buffersizing_buffer.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_analysis_dependency_graph_dependency_graph.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_analysis_dependency_graph_dependency_graph.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_analysis_latency_minimal.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_analysis_latency_minimal.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_analysis_latency_selftimed_minimal.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_analysis_latency_selftimed_minimal.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_analysis_latency_selftimed.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_analysis_latency_selftimed.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_analysis_latency_single_processor_random_staticorder.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_analysis_latency_single_processor_random_staticorder.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_analysis_maxplus_mpdependencies.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_analysis_maxplus_mpdependencies.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_analysis_maxplus_mpexplore.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_analysis_maxplus_mpexplore.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_analysis_maxplus_mpstorage.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_analysis_maxplus_mpstorage.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_analysis_mcm_mcmdg.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_analysis_mcm_mcmdg.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_analysis_mcm_mcmgraph.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_analysis_mcm_mcmgraph.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_analysis_mcm_mcmhoward.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_analysis_mcm_mcmhoward.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_analysis_mcm_mcmkarp.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_analysis_mcm_mcmkarp.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_analysis_mcm_mcm.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_analysis_mcm_mcm.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_analysis_mcm_mcmyto.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_analysis_mcm_mcmyto.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_analysis_throughput_deadlock.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_analysis_throughput_deadlock.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_analysis_throughput_selftimed_throughput.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_analysis_throughput_selftimed_throughput.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_analysis_throughput_static_periodic_ning_gao.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_analysis_throughput_static_periodic_ning_gao.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_analysis_throughput_tdma_schedule.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_analysis_throughput_tdma_schedule.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_analysis_token_communication_comm_trace.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_analysis_token_communication_comm_trace.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_base_algo_acyclic.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_base_algo_acyclic.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_base_algo_components.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_base_algo_components.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_base_algo_connected.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_base_algo_connected.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_base_algo_cycle.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_base_algo_cycle.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_base_algo_dfs.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_base_algo_dfs.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_base_algo_graph.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_base_algo_graph.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_base_algo_repetition_vector.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_base_algo_repetition_vector.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_base_hsdf_check.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_base_hsdf_check.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_base_timed_actor.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_base_timed_actor.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_base_timed_channel.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_base_timed_channel.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_base_timed_graph.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_base_timed_graph.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_base_untimed_actor.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_base_untimed_actor.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_base_untimed_channel.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_base_untimed_channel.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_base_untimed_component.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_base_untimed_component.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_base_untimed_graph.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_base_untimed_graph.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_base_untimed_port.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_base_untimed_port.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_generate_generate.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_generate_generate.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_output_buffer_throughput_buffy_autoconc.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_output_buffer_throughput_buffy_autoconc.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_output_buffer_throughput_buffy.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_output_buffer_throughput_buffy.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_output_dot_dot.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_output_dot_dot.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_output_hapi_hapi.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_output_hapi_hapi.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_output_html_html.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_output_html_html.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_output_schedule_schedule.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_output_schedule_schedule.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_output_xml_xml.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_output_xml_xml.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_binding_aware_sdfg_binding_aware_sdfg.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_binding_aware_sdfg_binding_aware_sdfg.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_flow_constraint.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_flow_constraint.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_flow_flow.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_flow_flow.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_flow_memory.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_flow_memory.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_flow_noc.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_flow_noc.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_flow_tile.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_flow_tile.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_mpsoc_arch_binding.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_mpsoc_arch_binding.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_mpsoc_arch_component.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_mpsoc_arch_component.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_mpsoc_arch_connection.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_mpsoc_arch_connection.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_mpsoc_arch_graph.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_mpsoc_arch_graph.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_mpsoc_arch_memory.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_mpsoc_arch_memory.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_mpsoc_arch_networkinterface.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_mpsoc_arch_networkinterface.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_mpsoc_arch_processor.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_mpsoc_arch_processor.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_mpsoc_arch_tile.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_mpsoc_arch_tile.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_mpsoc_arch_xml.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_mpsoc_arch_xml.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_mapping_nocmapping.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_mapping_nocmapping.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_problem_interconnect_graph.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_problem_interconnect_graph.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_problem_link.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_problem_link.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_problem_message.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_problem_message.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_problem_problem.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_problem_problem.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_problem_route.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_problem_route.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_problem_schedulingentity.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_problem_schedulingentity.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_problem_slot.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_problem_slot.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_scheduler_classic.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_scheduler_classic.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_scheduler_greedy.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_scheduler_greedy.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_scheduler_knowledge.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_scheduler_knowledge.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_scheduler_noc_scheduler.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_scheduler_noc_scheduler.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_scheduler_random.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_scheduler_random.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_scheduler_ripup.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_noc_allocation_scheduler_ripup.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_scheduling_list_scheduler.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_scheduling_list_scheduler.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_scheduling_priority_list_scheduler.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_scheduling_priority_list_scheduler.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_scheduling_static_order_schedule.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_scheduling_static_order_schedule.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_scheduling_static_periodic_scheduler_chao.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_scheduling_static_periodic_scheduler_chao.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_scheduling_static_periodic_scheduler.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_scheduling_static_periodic_scheduler.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_tile_allocation_binding.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_tile_allocation_binding.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_resource_allocation_tile_allocation_loadbalance.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_resource_allocation_tile_allocation_loadbalance.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_tools_sdf3analysis_sdf3analysis.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_tools_sdf3analysis_sdf3analysis.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_tools_sdf3arch_sdf3arch.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_tools_sdf3arch_sdf3arch.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_tools_sdf3cost_sdf3cost.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_tools_sdf3cost_sdf3cost.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_tools_sdf3ctg_sdf3ctg.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_tools_sdf3ctg_sdf3ctg.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_tools_sdf3flow_sdf3flow.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_tools_sdf3flow_sdf3flow.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_tools_sdf3flow_settings.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_tools_sdf3flow_settings.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_tools_sdf3gast_sdf3gast.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_tools_sdf3gast_sdf3gast.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_tools_sdf3generate_sdf3generate.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_tools_sdf3generate_sdf3generate.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_tools_sdf3print_sdf3print.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_tools_sdf3print_sdf3print.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_tools_sdf3transform_sdf3transform.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_tools_sdf3transform_sdf3transform.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_transform_hsdf_hsdf.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_transform_hsdf_hsdf.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_transform_hsdf_unfold.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_transform_hsdf_unfold.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_transform_misc_reverse_channels.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_transform_misc_reverse_channels.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_transform_model_autoconc.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_transform_model_autoconc.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_transform_model_buffer_capacity_constrained.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_transform_model_buffer_capacity_constrained.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_transform_model_buffersize.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_transform_model_buffersize.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_transform_to_apg_apg.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_transform_to_apg_apg.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/sdf_transform_to_apg_sdftoapg.o and sdf3_custom/sdf3/build/work/Linux/obj/sdf_transform_to_apg_sdftoapg.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/tools_test_runtest.o and sdf3_custom/sdf3/build/work/Linux/obj/tools_test_runtest.o differ -Binary files sdf3-backup/sdf3/build/work/Linux/obj/tools_test_tester.o and sdf3_custom/sdf3/build/work/Linux/obj/tools_test_tester.o differ -diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/csdf/analysis/buffersizing/buffer.cc ---- sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc 2014-07-24 12:16:04.000000000 +0800 -+++ sdf3_custom/sdf3/csdf/analysis/buffersizing/buffer.cc 2022-01-07 15:08:48.138360692 +0800 -@@ -37,8 +37,31 @@ +diff -ruN sdf3_140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/csdf/analysis/buffersizing/buffer.cc +--- sdf3_140724/sdf3/csdf/analysis/buffersizing/buffer.cc 2014-07-24 12:16:04.000000000 +0800 ++++ sdf3_custom/sdf3/csdf/analysis/buffersizing/buffer.cc 2022-07-12 16:37:20.841643588 +0800 +@@ -37,8 +37,32 @@ #include "buffer.h" #include "../throughput/throughput.h" @@ -34834,11 +29,12 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus + std::string ppDirName = "pp_logs/"; + ofstream dseLog; // save search path data in DSE log + std::chrono::duration cumulativeTime; ++ std::chrono::steady_clock::time_point cumulativeStart; + #endif /****************************************************************************** * Bounds on the search space -@@ -62,6 +85,9 @@ +@@ -62,6 +86,9 @@ */ void CSDFstateSpaceBufferAnalysis::initMinimalChannelSzStep(TimedCSDFgraph *g) { @@ -34848,7 +44,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus minSzStep = new TBufSize [g->nrChannels()]; for (CSDFchannelsIter iter = g->channelsBegin(); iter != g->channelsEnd(); -@@ -84,6 +110,10 @@ +@@ -84,6 +111,10 @@ minStepSz = gcd(minStepSz, dstPort->getRate()[i]); minSzStep[ch->getId()] = minStepSz; @@ -34859,7 +55,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus } } -@@ -93,6 +123,9 @@ +@@ -93,6 +124,9 @@ */ void CSDFstateSpaceBufferAnalysis::initMinimalChannelSz(TimedCSDFgraph *g) { @@ -34869,7 +65,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus minSz = new TBufSize [g->nrChannels()]; for (CSDFchannelsIter iter = g->channelsBegin(); iter != g->channelsEnd(); -@@ -116,6 +149,9 @@ +@@ -116,6 +150,9 @@ uint t = ch->getInitialTokens(); uint lb; @@ -34879,7 +75,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus // Lower-bound of a self-edge is rate at which data is produced and // consumed and the number of initial tokens present if (ch->getSrcActor()->getId() == ch->getDstActor()->getId()) -@@ -134,6 +170,10 @@ +@@ -134,6 +171,10 @@ if (lb < minSz[ch->getId()]) minSz[ch->getId()] = lb; } @@ -34890,7 +86,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus } } -@@ -147,6 +187,9 @@ +@@ -147,6 +188,9 @@ for (uint c = 0; c < g->nrChannels(); c++) lbDistributionSz += minSz[c]; @@ -34900,7 +96,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus } /** -@@ -158,6 +201,9 @@ +@@ -158,6 +202,9 @@ CSDFstateSpaceThroughputAnalysis thrAnalysisAlgo; maxThroughput = thrAnalysisAlgo.analyze(g); @@ -34910,7 +106,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus } /****************************************************************************** -@@ -350,7 +396,12 @@ +@@ -350,7 +397,12 @@ // Time between previous state time += s.glbClk; } @@ -34924,7 +120,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus return (TDtime)(nr_fire) / (time); } -@@ -382,6 +433,10 @@ +@@ -382,6 +434,10 @@ if (color[b] == 1) { // Found a cycle in the graph containing node b @@ -34935,7 +131,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus c = a; d = b; do -@@ -396,7 +451,12 @@ +@@ -396,7 +452,12 @@ CId dstId = ch->getDstActor()->getId(); if (dstId == d && srcId == c) @@ -34948,7 +144,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus } // Next -@@ -459,6 +519,121 @@ +@@ -459,6 +520,121 @@ delete [] pi; } @@ -35070,7 +266,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus /****************************************************************************** * CSDF *****************************************************************************/ -@@ -520,6 +695,9 @@ +@@ -520,6 +696,9 @@ void CSDFstateSpaceBufferAnalysis::TransitionSystem::startActorFiring( TimedCSDFactor *a) { @@ -35080,7 +276,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus // Consume tokens from inputs and space for output tokens for (CSDFportsIter iter = a->portsBegin(); iter != a->portsEnd(); iter++) { -@@ -529,20 +707,37 @@ +@@ -529,20 +708,37 @@ // Actor is destination of the channel? if (p->getType() == CSDFport::In) { @@ -35119,7 +315,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus } /** -@@ -571,6 +766,9 @@ +@@ -571,6 +767,9 @@ void CSDFstateSpaceBufferAnalysis::TransitionSystem::endActorFiring( CSDFactor *a) { @@ -35129,7 +325,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus for (CSDFportsIter iter = a->portsBegin(); iter != a->portsEnd(); iter++) { CSDFport *p = *iter; -@@ -584,16 +782,28 @@ +@@ -584,16 +783,28 @@ // Actor is source of the channel? if (p->getType() == CSDFport::Out) { @@ -35159,7 +355,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus } /** -@@ -669,6 +879,17 @@ +@@ -669,6 +880,17 @@ if (!CH_TOKENS_PREV(c->getId(), p->getRate()[ACT_SEQ_POS(a->getId())])) { @@ -35177,7 +373,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus abstractDepGraph[dstActor->getId()][srcActor->getId()] = true; } } -@@ -678,6 +899,17 @@ +@@ -678,6 +900,17 @@ if (!CH_SPACE_PREV(c->getId(), p->getRate()[ACT_SEQ_POS(a->getId())])) { @@ -35195,7 +391,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus abstractDepGraph[srcActor->getId()][dstActor->getId()] = true; } } -@@ -708,26 +940,46 @@ +@@ -708,26 +941,46 @@ for (uint j = 0; j < g->nrActors(); j++) abstractDepGraph[i][j] = false; } @@ -35243,7 +439,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus currentState.glbClk = 0; repCnt = 0; } -@@ -749,6 +1001,10 @@ +@@ -749,6 +1002,10 @@ // Ready to fire actor a? while (actorReadyToFire(a)) { @@ -35254,7 +450,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus // Track causal dependencies on firing of actor a findCausalDependencies(a, abstractDepGraph); -@@ -760,6 +1016,9 @@ +@@ -760,6 +1017,9 @@ // Clock step clockStep(); @@ -35264,7 +460,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus // Store partial state to check for progress for (uint i = 0; i < g->nrChannels(); i++) { -@@ -768,6 +1027,9 @@ +@@ -768,6 +1028,9 @@ } // Finish actor firings @@ -35274,7 +470,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus for (CSDFactorsIter iter = g->actorsBegin(); iter != g->actorsEnd(); iter++) { -@@ -775,14 +1037,28 @@ +@@ -775,14 +1038,28 @@ while (actorReadyToEnd(a)) { @@ -35303,7 +499,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus // Cycles in the dependency graph indicate storage // dependencies findStorageDependencies(abstractDepGraph, dep); -@@ -795,6 +1071,9 @@ +@@ -795,6 +1072,9 @@ // Done return; } @@ -35313,7 +509,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus currentState.glbClk = 0; repCnt = 0; } -@@ -824,6 +1103,9 @@ +@@ -824,6 +1104,9 @@ for (uint j = 0; j < g->nrActors(); j++) abstractDepGraph[i][j] = false; } @@ -35323,7 +519,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus // Check number of tokens on every channel in the graph for (CSDFchannelsIter iter = g->channelsBegin(); -@@ -837,6 +1119,12 @@ +@@ -837,6 +1120,12 @@ if (!CH_TOKENS(c->getId(), c->getDstPort()->getRate()[ACT_SEQ_POS(dstActor->getId())])) { @@ -35336,7 +532,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus abstractDepGraph[dstActor->getId()][srcActor->getId()] = true; } -@@ -844,6 +1132,12 @@ +@@ -844,6 +1133,12 @@ if (!CH_SPACE(c->getId(), c->getSrcPort()->getRate()[ACT_SEQ_POS(srcActor->getId())])) { @@ -35349,7 +545,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus abstractDepGraph[srcActor->getId()][dstActor->getId()] = true; } } -@@ -873,6 +1167,10 @@ +@@ -873,6 +1168,10 @@ clearStoredStates(); // Create initial state @@ -35360,7 +556,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus currentState.init(g->nrActors(), g->nrChannels()); currentState.clear(); previousState.init(g->nrActors(), g->nrChannels()); -@@ -891,11 +1189,22 @@ +@@ -891,11 +1190,22 @@ return 0; } @@ -35383,7 +579,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus while (true) { // Store partial state to check for progress -@@ -913,15 +1222,28 @@ +@@ -913,15 +1223,28 @@ while (actorReadyToEnd(a)) { @@ -35413,7 +609,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus analyzePeriodicPhase(sp, dep); return computeThroughput(recurrentState); -@@ -945,6 +1267,9 @@ +@@ -945,6 +1268,9 @@ // Ready to fire actor a? while (actorReadyToFire(a)) { @@ -35423,7 +619,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus // Fire actor a startActorFiring(a); } -@@ -952,10 +1277,16 @@ +@@ -952,10 +1278,16 @@ // Clock step clkStep = clockStep(); @@ -35440,7 +636,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus // Find cause of deadlock analyzeDeadlock(sp, dep); return 0; -@@ -1015,6 +1346,46 @@ +@@ -1015,6 +1347,46 @@ //for (uint c = 0; c < g->nrChannels(); c++) // cerr << d->sp[c] << " " << d->dep[c] << endl; //cerr << endl; @@ -35487,7 +683,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus } /** -@@ -1032,6 +1403,10 @@ +@@ -1032,6 +1404,10 @@ // throughput with previous (smaller) distribution size if (ds->prev != NULL && ds->prev->thr == ds->thr) { @@ -35498,7 +694,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus // No minimal storage distributions exist in this list // Iterate over the list of storage distributions d = ds->distributions; -@@ -1072,6 +1447,10 @@ +@@ -1072,6 +1448,10 @@ t = d->next; // Cleanup d @@ -35509,7 +705,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus deleteStorageDistribution(d); // Next -@@ -1102,9 +1481,16 @@ +@@ -1102,9 +1482,16 @@ StorageDistribution *di; bool equalDistr; @@ -35526,7 +722,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus // Create new set of storage distributions dsNew = new StorageDistributionSet; dsNew->sz = d->sz; -@@ -1147,14 +1533,21 @@ +@@ -1147,14 +1534,21 @@ } // Found equal distribution @@ -35550,7 +746,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus ds->distributions->prev = d; d->next = ds->distributions; ds->distributions = d; -@@ -1162,7 +1555,9 @@ +@@ -1162,7 +1556,9 @@ else if (ds->next == NULL) { // No set of distribution in the list with same or larger size? @@ -35561,7 +757,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus // Create new set of storage distributions dsNew = new StorageDistributionSet; dsNew->sz = d->sz; -@@ -1182,6 +1577,9 @@ +@@ -1182,6 +1578,9 @@ // distribution 'd'. // Create new set of storage distributions @@ -35571,7 +767,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus dsNew = new StorageDistributionSet; dsNew->sz = d->sz; dsNew->thr = 0; -@@ -1211,13 +1609,30 @@ +@@ -1211,13 +1610,28 @@ { StorageDistribution *dNew; @@ -35583,7 +779,6 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus + #ifdef LOG_OUT + auto endTime = std::chrono::steady_clock::now(); + std::chrono::duration execTime = endTime - startTime; // duration of individual execution -+ cumulativeTime += execTime; + #endif + #ifdef VERBOSE_OUT + computation_counter++; @@ -35595,14 +790,13 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus + #ifdef LOG_OUT + // log execution times (cont. from execStorageDistribution) -+ dseLog << execTime.count() << ";" -+ << cumulativeTime.count() << endl; ++ dseLog << execTime.count() << ";"; + #endif + // Create new storage distributions for every channel which // has a storage dependency in d for (uint c = 0; c < g->nrChannels(); c++) -@@ -1225,25 +1640,48 @@ +@@ -1225,25 +1639,48 @@ // Channel c has storage dependency? if (d->dep[c]) { @@ -35655,7 +849,19 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus if (!addStorageDistributionToChecklist(dNew)) { // Distribution already in check list -@@ -1267,6 +1705,9 @@ +@@ -1251,6 +1688,11 @@ + } + } + } ++ #ifdef LOG_OUT ++ // update cumulative duration since start of DSE ++ cumulativeTime = std::chrono::steady_clock::now() - cumulativeStart; ++ dseLog << cumulativeTime.count() << endl; ++ #endif + } + + /** +@@ -1267,6 +1709,9 @@ d = ds->distributions; while (d != NULL) { @@ -35665,7 +871,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus // Explore distribution d exploreStorageDistribution(ds, d); -@@ -1275,6 +1716,10 @@ +@@ -1275,6 +1720,10 @@ } // Remove all non-minimal storage distributions from the set @@ -35676,7 +882,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus minimizeStorageDistributionsSet(ds); } -@@ -1305,6 +1750,26 @@ +@@ -1305,6 +1754,26 @@ // Check sets of storage distributions till no distributions left to check, // or throughput bound exceeded, or maximal throughput reached ds = minStorageDistributions; @@ -35703,7 +909,7 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus while (ds != NULL) { // Explore all distributions with size 'ds->sz' -@@ -1390,6 +1855,83 @@ +@@ -1390,6 +1859,83 @@ for (uint c = 0; c < g->nrChannels(); c++) minStorageDistributions->distributions->sp[c] = 0; } @@ -35787,19 +993,22 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_cus } /** -@@ -1409,6 +1951,9 @@ +@@ -1409,6 +1955,12 @@ minStorageDistributions = NULL; // Initialize bounds on the search space + #ifdef VERBOSE_OUT + cout << "INITIALISING SEARCH PARAMETERS:" << endl; ++ #endif ++ #ifdef LOG_OUT ++ cumulativeStart = std::chrono::steady_clock::now(); // DSE cumulative time starts here + #endif initBoundsSearchSpace(g); // Create a transition system -diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.h sdf3_custom/sdf3/csdf/analysis/buffersizing/buffer.h ---- sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.h 2014-07-24 12:16:04.000000000 +0800 -+++ sdf3_custom/sdf3/csdf/analysis/buffersizing/buffer.h 2022-01-07 15:08:14.848572035 +0800 +diff -ruN sdf3_140724/sdf3/csdf/analysis/buffersizing/buffer.h sdf3_custom/sdf3/csdf/analysis/buffersizing/buffer.h +--- sdf3_140724/sdf3/csdf/analysis/buffersizing/buffer.h 2014-07-24 12:16:04.000000000 +0800 ++++ sdf3_custom/sdf3/csdf/analysis/buffersizing/buffer.h 2022-04-13 21:25:58.259736324 +0800 @@ -40,6 +40,7 @@ #include "sdf/sdf.h" @@ -35822,9 +1031,9 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/buffersizing/buffer.h sdf3_cust // Compute throughput from transition system TDtime computeThroughput(const StatesIter cycleIter); -diff --color -ruN sdf3-backup/sdf3/csdf/analysis/throughput/selftimed_throughput.cc sdf3_custom/sdf3/csdf/analysis/throughput/selftimed_throughput.cc ---- sdf3-backup/sdf3/csdf/analysis/throughput/selftimed_throughput.cc 2014-07-24 12:16:04.000000000 +0800 -+++ sdf3_custom/sdf3/csdf/analysis/throughput/selftimed_throughput.cc 2021-11-25 04:57:23.906949154 +0800 +diff -ruN sdf3_140724/sdf3/csdf/analysis/throughput/selftimed_throughput.cc sdf3_custom/sdf3/csdf/analysis/throughput/selftimed_throughput.cc +--- sdf3_140724/sdf3/csdf/analysis/throughput/selftimed_throughput.cc 2014-07-24 12:16:04.000000000 +0800 ++++ sdf3_custom/sdf3/csdf/analysis/throughput/selftimed_throughput.cc 2022-04-13 21:25:58.259736324 +0800 @@ -38,7 +38,7 @@ namespace CSDF @@ -35948,9 +1157,9 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/throughput/selftimed_throughput return 0; } -diff --color -ruN sdf3-backup/sdf3/csdf/analysis/throughput/selftimed_throughput.cc.orig sdf3_custom/sdf3/csdf/analysis/throughput/selftimed_throughput.cc.orig ---- sdf3-backup/sdf3/csdf/analysis/throughput/selftimed_throughput.cc.orig 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/csdf/analysis/throughput/selftimed_throughput.cc.orig 2021-11-25 04:57:23.906949154 +0800 +diff -ruN sdf3_140724/sdf3/csdf/analysis/throughput/selftimed_throughput.cc.orig sdf3_custom/sdf3/csdf/analysis/throughput/selftimed_throughput.cc.orig +--- sdf3_140724/sdf3/csdf/analysis/throughput/selftimed_throughput.cc.orig 1970-01-01 07:30:00.000000000 +0730 ++++ sdf3_custom/sdf3/csdf/analysis/throughput/selftimed_throughput.cc.orig 2022-04-13 21:25:58.259736324 +0800 @@ -0,0 +1,688 @@ +/* + * TU Eindhoven @@ -36640,9 +1849,9 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/throughput/selftimed_throughput + return thr; + } +}//namespace CSDF -diff --color -ruN sdf3-backup/sdf3/csdf/analysis/throughput/selftimed_throughput.cc.rej sdf3_custom/sdf3/csdf/analysis/throughput/selftimed_throughput.cc.rej ---- sdf3-backup/sdf3/csdf/analysis/throughput/selftimed_throughput.cc.rej 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/csdf/analysis/throughput/selftimed_throughput.cc.rej 2021-11-25 04:57:23.906949154 +0800 +diff -ruN sdf3_140724/sdf3/csdf/analysis/throughput/selftimed_throughput.cc.rej sdf3_custom/sdf3/csdf/analysis/throughput/selftimed_throughput.cc.rej +--- sdf3_140724/sdf3/csdf/analysis/throughput/selftimed_throughput.cc.rej 1970-01-01 07:30:00.000000000 +0730 ++++ sdf3_custom/sdf3/csdf/analysis/throughput/selftimed_throughput.cc.rej 2022-04-13 21:25:58.259736324 +0800 @@ -0,0 +1,1380 @@ +*** buffer.cc 2014-07-24 12:16:04.000000000 +0800 +--- buffer.cc 2021-01-21 15:26:47.935610418 +0800 @@ -38024,9 +3233,9 @@ diff --color -ruN sdf3-backup/sdf3/csdf/analysis/throughput/selftimed_throughput + while (ds != NULL) + { + // Explore all distributions with size 'ds->sz' -diff --color -ruN sdf3-backup/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc sdf3_custom/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc ---- sdf3-backup/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc 2014-07-24 12:16:04.000000000 +0800 -+++ sdf3_custom/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc 2021-11-25 04:57:23.906949154 +0800 +diff -ruN sdf3_140724/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc sdf3_custom/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc +--- sdf3_140724/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc 2014-07-24 12:16:04.000000000 +0800 ++++ sdf3_custom/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc 2022-04-13 21:25:58.260736328 +0800 @@ -293,6 +293,10 @@ out << " [" << g->getActor(i)->getName() << "] = "; out << repetitionVector[i] << endl; @@ -38055,9 +3264,9 @@ diff --color -ruN sdf3-backup/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc sdf3_ out << endl; } -diff --color -ruN sdf3-backup/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc.orig sdf3_custom/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc.orig ---- sdf3-backup/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc.orig 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc.orig 2021-11-25 04:57:23.906949154 +0800 +diff -ruN sdf3_140724/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc.orig sdf3_custom/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc.orig +--- sdf3_140724/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc.orig 1970-01-01 07:30:00.000000000 +0730 ++++ sdf3_custom/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc.orig 2022-04-13 21:25:58.260736328 +0800 @@ -0,0 +1,431 @@ +/* + * TU Eindhoven @@ -38490,9 +3699,9 @@ diff --color -ruN sdf3-backup/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc.orig + return exit_status; +} + -diff --color -ruN sdf3-backup/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc.rej sdf3_custom/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc.rej ---- sdf3-backup/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc.rej 1970-01-01 07:30:00.000000000 +0730 -+++ sdf3_custom/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc.rej 2021-11-25 04:57:23.906949154 +0800 +diff -ruN sdf3_140724/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc.rej sdf3_custom/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc.rej +--- sdf3_140724/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc.rej 1970-01-01 07:30:00.000000000 +0730 ++++ sdf3_custom/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc.rej 2022-04-13 21:25:58.260736328 +0800 @@ -0,0 +1,1517 @@ +*** buffer.cc 2014-07-24 12:16:04.000000000 +0800 +--- buffer.cc 2021-01-21 15:26:47.935610418 +0800 @@ -40011,10 +5220,10 @@ diff --color -ruN sdf3-backup/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc.rej s + } + + /** -diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer.cc ---- sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc 2014-07-24 12:16:04.000000000 +0800 -+++ sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer.cc 2022-01-07 15:06:17.523052402 +0800 -@@ -38,9 +38,24 @@ +diff -ruN sdf3_140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer.cc +--- sdf3_140724/sdf3/sdf/analysis/buffersizing/buffer.cc 2014-07-24 12:16:04.000000000 +0800 ++++ sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer.cc 2022-07-12 16:37:08.059591806 +0800 +@@ -38,9 +38,25 @@ #include "buffer.h" #include "../../base/algo/repetition_vector.h" #include "../throughput/throughput.h" @@ -40036,11 +5245,12 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust + std::string ppDirName = "pp_logs/"; + ofstream dseLog; // save search path data in DSE log + std::chrono::duration cumulativeTime; ++ std::chrono::steady_clock::time_point cumulativeStart; +#endif /****************************************************************************** * Bounds on the search space *****************************************************************************/ -@@ -63,6 +78,9 @@ +@@ -63,6 +79,9 @@ */ void SDFstateSpaceBufferAnalysis::initMinimalChannelSzStep(TimedSDFgraph *g) { @@ -40050,7 +5260,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust minSzStep = new TBufSize [g->nrChannels()]; for (SDFchannelsIter iter = g->channelsBegin(); iter != g->channelsEnd(); -@@ -78,6 +96,10 @@ +@@ -78,6 +97,10 @@ minStepSz = gcd(p, c); minSzStep[ch->getId()] = minStepSz; @@ -40061,7 +5271,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust } } -@@ -87,6 +109,9 @@ +@@ -87,6 +110,9 @@ */ void SDFstateSpaceBufferAnalysis::initMinimalChannelSz(TimedSDFgraph *g) { @@ -40071,7 +5281,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust minSz = new TBufSize [g->nrChannels()]; for (SDFchannelsIter iter = g->channelsBegin(); iter != g->channelsEnd(); -@@ -245,6 +270,10 @@ +@@ -245,6 +271,10 @@ a = *iter; min = repVec[a->getId()]; } @@ -40082,7 +5292,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust } // Set output actor and its repetition vector count -@@ -309,7 +338,12 @@ +@@ -309,7 +339,12 @@ // Time between previous state time += s.glbClk; } @@ -40096,7 +5306,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust return (TDtime)(nr_fire) / (time); } -@@ -341,6 +375,10 @@ +@@ -341,6 +376,10 @@ if (color[b] == 1) { // Found a cycle in the graph containing node b @@ -40107,7 +5317,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust c = a; d = b; do -@@ -355,7 +393,12 @@ +@@ -355,7 +394,12 @@ CId dstId = ch->getDstActor()->getId(); if (dstId == d && srcId == c) @@ -40120,7 +5330,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust } // Next -@@ -418,6 +461,122 @@ +@@ -418,6 +462,122 @@ delete [] pi; } @@ -40243,7 +5453,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust /****************************************************************************** * SDF *****************************************************************************/ -@@ -477,6 +636,9 @@ +@@ -477,6 +637,9 @@ void SDFstateSpaceBufferAnalysis::TransitionSystem::startActorFiring( TimedSDFactor *a) { @@ -40253,7 +5463,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust // Consume tokens from inputs and space for output tokens for (SDFportsIter iter = a->portsBegin(); iter != a->portsEnd(); iter++) { -@@ -614,6 +776,17 @@ +@@ -614,6 +777,17 @@ // Not enough tokens in the previous state? if (!CH_TOKENS_PREV(c->getId(), p->getRate())) { @@ -40271,7 +5481,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust abstractDepGraph[dstActor->getId()][srcActor->getId()] = true; } } -@@ -622,6 +795,17 @@ +@@ -622,6 +796,17 @@ // Not enough space in the previous state? if (!CH_SPACE_PREV(c->getId(), p->getRate())) { @@ -40289,7 +5499,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust abstractDepGraph[srcActor->getId()][dstActor->getId()] = true; } } -@@ -693,6 +877,10 @@ +@@ -693,6 +878,10 @@ // Ready to fire actor a? while (actorReadyToFire(a)) { @@ -40300,7 +5510,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust // Track causal dependencies on firing of actor a findCausalDependencies(a, abstractDepGraph); -@@ -704,6 +892,9 @@ +@@ -704,6 +893,9 @@ // Clock step clockStep(); @@ -40310,7 +5520,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust // Store partial state to check for progress for (uint i = 0; i < g->nrChannels(); i++) { -@@ -719,17 +910,35 @@ +@@ -719,17 +911,35 @@ while (actorReadyToEnd(a)) { @@ -40346,7 +5556,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust // Cleanup for (uint i = 0; i < g->nrActors(); i++) -@@ -739,6 +948,9 @@ +@@ -739,6 +949,9 @@ // Done return; } @@ -40356,7 +5566,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust currentState.glbClk = 0; repCnt = 0; } -@@ -768,6 +980,9 @@ +@@ -768,6 +981,9 @@ for (uint j = 0; j < g->nrActors(); j++) abstractDepGraph[i][j] = false; } @@ -40366,7 +5576,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust // Check number of tokens on every channel in the graph for (SDFchannelsIter iter = g->channelsBegin(); -@@ -780,18 +995,34 @@ +@@ -780,18 +996,34 @@ // Insufficient tokens to fire destination actor if (!CH_TOKENS(c->getId(), c->getDstPort()->getRate())) { @@ -40402,7 +5612,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust // Cleanup for (uint i = 0; i < g->nrActors(); i++) -@@ -815,6 +1046,10 @@ +@@ -815,6 +1047,10 @@ clearStoredStates(); // Create initial state @@ -40413,7 +5623,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust currentState.init(g->nrActors(), g->nrChannels()); currentState.clear(); previousState.init(g->nrActors(), g->nrChannels()); -@@ -833,11 +1068,22 @@ +@@ -833,11 +1069,22 @@ return 0; } @@ -40436,7 +5646,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust while (true) { // Store partial state to check for progress -@@ -855,15 +1101,28 @@ +@@ -855,15 +1102,28 @@ while (actorReadyToEnd(a)) { @@ -40466,7 +5676,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust analyzePeriodicPhase(sp, dep); return computeThroughput(recurrentState); -@@ -887,6 +1146,9 @@ +@@ -887,6 +1147,9 @@ // Ready to fire actor a? while (actorReadyToFire(a)) { @@ -40476,7 +5686,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust // Fire actor a startActorFiring(a); } -@@ -894,10 +1156,16 @@ +@@ -894,10 +1157,16 @@ // Clock step clkStep = clockStep(); @@ -40493,7 +5703,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust // Find cause of deadlock analyzeDeadlock(sp, dep); return 0; -@@ -957,6 +1225,28 @@ +@@ -957,6 +1226,28 @@ //for (uint c = 0; c < g->nrChannels(); c++) // cerr << d->sp[c] << " " << d->dep[c] << endl; //cerr << endl; @@ -40522,7 +5732,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust } /** -@@ -974,6 +1264,10 @@ +@@ -974,6 +1265,10 @@ // throughput with previous (smaller) distribution size if (ds->prev != NULL && ds->prev->thr == ds->thr) { @@ -40533,7 +5743,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust // No minimal storage distributions exist in this list // Iterate over the list of storage distributions d = ds->distributions; -@@ -1014,6 +1308,10 @@ +@@ -1014,6 +1309,10 @@ t = d->next; // Cleanup d @@ -40544,7 +5754,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust deleteStorageDistribution(d); // Next -@@ -1044,9 +1342,16 @@ +@@ -1044,9 +1343,16 @@ StorageDistribution *di; bool equalDistr; @@ -40561,7 +5771,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust // Create new set of storage distributions dsNew = new StorageDistributionSet; dsNew->sz = d->sz; -@@ -1089,14 +1394,21 @@ +@@ -1089,14 +1395,21 @@ } // Found equal distribution @@ -40585,7 +5795,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust ds->distributions->prev = d; d->next = ds->distributions; ds->distributions = d; -@@ -1104,7 +1416,9 @@ +@@ -1104,7 +1417,9 @@ else if (ds->next == NULL) { // No set of distribution in the list with same or larger size? @@ -40596,7 +5806,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust // Create new set of storage distributions dsNew = new StorageDistributionSet; dsNew->sz = d->sz; -@@ -1124,6 +1438,9 @@ +@@ -1124,6 +1439,9 @@ // distribution 'd'. // Create new set of storage distributions @@ -40606,7 +5816,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust dsNew = new StorageDistributionSet; dsNew->sz = d->sz; dsNew->thr = 0; -@@ -1153,13 +1470,30 @@ +@@ -1153,13 +1471,28 @@ { StorageDistribution *dNew; @@ -40618,7 +5828,6 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust + #ifdef LOG_OUT + auto endTime = std::chrono::steady_clock::now(); + std::chrono::duration execTime = endTime - startTime; // duration of individual execution -+ cumulativeTime += execTime; + #endif + #ifdef VERBOSE_OUT + computation_counter++; @@ -40630,14 +5839,13 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust + #ifdef LOG_OUT + // log execution times (cont. from execStorageDistribution) -+ dseLog << execTime.count() << ";" -+ << cumulativeTime.count() << endl; ++ dseLog << execTime.count() << ";"; + #endif + // Create new storage distributions for every channel which // has a storage dependency in d for (uint c = 0; c < g->nrChannels(); c++) -@@ -1167,25 +1501,48 @@ +@@ -1167,25 +1500,48 @@ // Channel c has storage dependency? if (d->dep[c]) { @@ -40690,7 +5898,19 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust if (!addStorageDistributionToChecklist(dNew)) { // Distribution already in check list -@@ -1209,6 +1566,9 @@ +@@ -1193,6 +1549,11 @@ + } + } + } ++ #ifdef LOG_OUT ++ // update real cumulative duration since start of DSE ++ cumulativeTime = std::chrono::steady_clock::now() - cumulativeStart; ++ dseLog << cumulativeTime.count() << endl; ++ #endif + } + + /** +@@ -1209,6 +1570,9 @@ d = ds->distributions; while (d != NULL) { @@ -40700,7 +5920,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust // Explore distribution d exploreStorageDistribution(ds, d); -@@ -1217,6 +1577,10 @@ +@@ -1217,6 +1581,10 @@ } // Remove all non-minimal storage distributions from the set @@ -40711,7 +5931,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust minimizeStorageDistributionsSet(ds); } -@@ -1247,6 +1611,26 @@ +@@ -1247,6 +1615,26 @@ // Check sets of storage distributions till no distributions left to check, // or throughput bound exceeded, or maximal throughput reached ds = minStorageDistributions; @@ -40738,7 +5958,7 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust while (ds != NULL) { // Explore all distributions with size 'ds->sz' -@@ -1332,6 +1716,83 @@ +@@ -1332,6 +1720,83 @@ for (uint c = 0; c < g->nrChannels(); c++) minStorageDistributions->distributions->sp[c] = 0; } @@ -40822,19 +6042,22 @@ diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_cust } /** -@@ -1351,6 +1812,9 @@ +@@ -1351,6 +1816,12 @@ minStorageDistributions = NULL; // Initialize bounds on the search space + #ifdef VERBOSE_OUT + cout << "INITIALISING SEARCH PARAMETERS:" << endl; ++ #endif ++ #ifdef LOG_OUT ++ cumulativeStart = std::chrono::steady_clock::now(); // DSE cumulative time starts here + #endif initBoundsSearchSpace(g); // Create a transition system -diff --color -ruN sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.h sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer.h ---- sdf3-backup/sdf3/sdf/analysis/buffersizing/buffer.h 2014-07-24 12:16:04.000000000 +0800 -+++ sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer.h 2022-01-07 15:04:46.161121013 +0800 +diff -ruN sdf3_140724/sdf3/sdf/analysis/buffersizing/buffer.h sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer.h +--- sdf3_140724/sdf3/sdf/analysis/buffersizing/buffer.h 2014-07-24 12:16:04.000000000 +0800 ++++ sdf3_custom/sdf3/sdf/analysis/buffersizing/buffer.h 2022-04-13 21:25:58.261736331 +0800 @@ -40,6 +40,7 @@ #include "storage_distribution.h"