From 6dd792a13ba68d997099eee899054e6176c3bf62 Mon Sep 17 00:00:00 2001 From: Bruno Date: Thu, 30 Dec 2021 15:35:13 +0800 Subject: [PATCH 1/5] Add cycle detection --- src/libkiter/algorithms/algorithms.h | 1 + .../algorithms/analysis/cycle_detection.cpp | 35 +++++++++++++++++++ .../algorithms/analysis/cycle_detection.h | 34 ++++++++++++++++++ 3 files changed, 70 insertions(+) create mode 100644 src/libkiter/algorithms/analysis/cycle_detection.cpp create mode 100644 src/libkiter/algorithms/analysis/cycle_detection.h diff --git a/src/libkiter/algorithms/algorithms.h b/src/libkiter/algorithms/algorithms.h index 2c8e395b..1deddaf0 100644 --- a/src/libkiter/algorithms/algorithms.h +++ b/src/libkiter/algorithms/algorithms.h @@ -21,6 +21,7 @@ #include #include #include +#include diff --git a/src/libkiter/algorithms/analysis/cycle_detection.cpp b/src/libkiter/algorithms/analysis/cycle_detection.cpp new file mode 100644 index 00000000..c154bd66 --- /dev/null +++ b/src/libkiter/algorithms/analysis/cycle_detection.cpp @@ -0,0 +1,35 @@ +/* + * cycle_detection.cpp + * + * Created on: 29 Dec 2021 + * Author: toky + */ + +#include "cycle_detection.h" +#include +#include +#include +#include + +bool algorithms::has_selfloops (models::Dataflow* const dataflow) { + for (auto t : dataflow->vertices()) { + if (dataflow->getReentrancyFactor(t) > 0) { + return true; + } + } + return false; +} +bool algorithms::has_cycles (models::Dataflow* const dataflow) { + std::map> res = algorithms::computeSCCKosaraju(dataflow); + for (auto item : res) { + VERBOSE_INFO("Component " << item.first << " has " << item.second.size() << " members"); + } + for (auto item : res) { + if (item.second.size() > 1) return true; + } + return false; +} +void algorithms::cycle_detection (models::Dataflow* const dataflow, parameters_list_t){ + VERBOSE_INFO("has_cycles result: " << algorithms::has_cycles(dataflow)); + std::cout << "has_cycles result: " << algorithms::has_cycles(dataflow) << std::endl; +} diff --git a/src/libkiter/algorithms/analysis/cycle_detection.h b/src/libkiter/algorithms/analysis/cycle_detection.h new file mode 100644 index 00000000..bf37129f --- /dev/null +++ b/src/libkiter/algorithms/analysis/cycle_detection.h @@ -0,0 +1,34 @@ +/* + * cycle_detection.h + * + * Created on: 29 Dec 2021 + * Author: toky + */ + +#ifndef SRC_LIBKITER_ALGORITHMS_ANALYSIS_CYCLE_DETECTION_H_ +#define SRC_LIBKITER_ALGORITHMS_ANALYSIS_CYCLE_DETECTION_H_ + + +#include + +namespace models { + class Dataflow; +} + +namespace algorithms { + +bool has_selfloops (models::Dataflow* const dataflow); +bool has_cycles (models::Dataflow* const dataflow); +void cycle_detection (models::Dataflow* const dataflow, parameters_list_t); + + +} + + +ADD_TRANSFORMATION(CycleDetection, + transformation_t({ "CycleDetection" , "CycleDetection.", algorithms::cycle_detection})); + + + + +#endif /* SRC_LIBKITER_ALGORITHMS_ANALYSIS_CYCLE_DETECTION_H_ */ From 616dbc84719fbfd08e8dcb108435053c5489b1fa Mon Sep 17 00:00:00 2001 From: jkmingwen Date: Wed, 5 Jan 2022 16:53:01 +0800 Subject: [PATCH 2/5] Implement cycle count algorithm --- .../algorithms/analysis/cycle_detection.cpp | 184 ++++++++++++++++++ .../algorithms/analysis/cycle_detection.h | 16 +- 2 files changed, 199 insertions(+), 1 deletion(-) diff --git a/src/libkiter/algorithms/analysis/cycle_detection.cpp b/src/libkiter/algorithms/analysis/cycle_detection.cpp index c154bd66..a819f21f 100644 --- a/src/libkiter/algorithms/analysis/cycle_detection.cpp +++ b/src/libkiter/algorithms/analysis/cycle_detection.cpp @@ -6,10 +6,21 @@ */ #include "cycle_detection.h" +#include #include #include #include #include +#include +#include +#include +#include +#include + +std::vector dfs_stack; +std::set blocked_set; +std::map> blocked_map; +std::vector> simple_cycles; bool algorithms::has_selfloops (models::Dataflow* const dataflow) { for (auto t : dataflow->vertices()) { @@ -33,3 +44,176 @@ void algorithms::cycle_detection (models::Dataflow* const dataflow, param VERBOSE_INFO("has_cycles result: " << algorithms::has_cycles(dataflow)); std::cout << "has_cycles result: " << algorithms::has_cycles(dataflow) << std::endl; } + +void algorithms::find_simple_cycles(models::Dataflow* const dataflow, parameters_list_t) { + ARRAY_INDEX start_id = 1; // NOTE probably better to check first vertex in dataflow graph rather than assume value of start ID (dataflow->getFirstVertex()?) + VERBOSE_DEBUG("original graph:" << std::endl); + VERBOSE_DEBUG(print_status(dataflow) << std::endl); + while (start_id <= dataflow->getVerticesCount()) { + models::Dataflow* subgraph = generate_subgraph(dataflow, start_id); // subgraph excludes all vertices less than the specified starting ID + std::map> scc_map = algorithms::computeSCCKosaraju(subgraph); + // find the SCC that contains the vertex with the smallest ID + ARRAY_INDEX min_id = find_smallest_index(subgraph, scc_map); + if (min_id != INT_MAX) { + models::Dataflow* scc = generate_scc(subgraph, scc_map, min_id); + VERBOSE_DEBUG("smallest vertex ID amongst SCCs: " << min_id << std::endl); + VERBOSE_DEBUG(print_status(scc) << std::endl); + blocked_set.clear(); + blocked_map.clear(); + find_simple_cycles_scc(scc, min_id, min_id); + start_id = min_id + 1; + } else { + break; + } + } + // print detected cycles + std::cout << "Cycles detected:" << std::endl; + for (auto cycle : simple_cycles) { + int comp_count = 1; + int cycle_size = cycle.size(); + for (auto id : cycle) { + if (comp_count < cycle_size) { + std::cout << id << " -> "; + } else { + std::cout << id << std::endl; + } + comp_count++; + } + } + std::cout << "Total number of cycles: " << simple_cycles.size() << std::endl; +} + +// iterate through SCC map, ignore SCC of size == 1, track minimum ID value +ARRAY_INDEX algorithms::find_smallest_index(models::Dataflow* const dataflow, + std::map> scc_map) { + ARRAY_INDEX min_id = INT_MAX; // NOTE should be LDBL_MAX but i can't seem to get it to work + for (auto const& component : scc_map) { + if (component.second.size() > 1) { + if (*std::min_element(component.second.begin(), component.second.end()) < min_id) { + min_id = *std::min_element(component.second.begin(), component.second.end()); + } + } + } + + return min_id; +} + +// generate SCC that contains start_id +models::Dataflow* algorithms::generate_scc(models::Dataflow* const dataflow, + std::map> scc_map, + ARRAY_INDEX start_id) { + models::Dataflow* scc = new models::Dataflow(*dataflow); + for (auto const& component : scc_map) { + if (std::find(component.second.begin(), + component.second.end(), + start_id) == component.second.end()) { + continue; + } else { + {ForEachVertex(dataflow, v) { + ARRAY_INDEX actor_id = dataflow->getVertexId(v); + if (std::find(component.second.begin(), + component.second.end(), + actor_id) == component.second.end()) { + scc->removeVertex(scc->getVertexById(actor_id)); + } + }} + return scc; // return first SCC with start_id + } + } +} +// make subgraph excluding all vertices less than a specified ID +models::Dataflow* algorithms::generate_subgraph(models::Dataflow* const dataflow, + ARRAY_INDEX lower_limit) { + models::Dataflow* subgraph = new models::Dataflow(*dataflow); + subgraph->reset_computation(); + // remove all actors with IDs less than specified lower_limit + {ForEachVertex(dataflow, v) { + ARRAY_INDEX actor_id = dataflow->getVertexId(v); + if (actor_id < lower_limit) { + subgraph->removeVertex(subgraph->getVertexById(actor_id)); + } + }} + return subgraph; +} + +// rescursively remove specified vertex ID from blocked_set while taking into account blocked_map +void algorithms::unblock(ARRAY_INDEX id) { + VERBOSE_DEBUG("removing " << id << " from blocked set" << std::endl); + blocked_set.erase(blocked_set.find(id)); + VERBOSE_DEBUG("\tblocked set: "); + for (auto block : blocked_set) { + VERBOSE_DEBUG(block << " "); + } + VERBOSE_DEBUG(std::endl); + if (blocked_map.find(id) != blocked_map.end()) { + for (auto actor_id : blocked_map[id]) { + if (blocked_set.find(actor_id) != blocked_set.end()) { + unblock(actor_id); + } + } + VERBOSE_DEBUG("removing blocked mapping for all " << id << std::endl); + blocked_map.erase(blocked_map.find(id)); + } +} + +// find simple cycles starting at start_vertex from current_vertex +bool algorithms::find_simple_cycles_scc(models::Dataflow* const scc, + ARRAY_INDEX start_id, ARRAY_INDEX current_id) { + bool found_cycle = false; + dfs_stack.push_back(current_id); + blocked_set.insert(current_id); + + {ForOutputEdges(scc, scc->getVertexById(current_id), e) { + ARRAY_INDEX neighbour_id = scc->getVertexId(scc->getEdgeTarget(e)); + VERBOSE_DEBUG("current_id: " << current_id << std::endl); + VERBOSE_DEBUG("neighbour_id: " << neighbour_id << std::endl); + if (neighbour_id == start_id) { // cycle found + VERBOSE_DEBUG("\tcurrent id == neighbour id; cycle found!" << std::endl); + dfs_stack.push_back(start_id); + std::vector cycle(dfs_stack); + VERBOSE_DEBUG("\tFound cycle: "); + for (auto i : cycle) { + VERBOSE_DEBUG(i << " "); + } + VERBOSE_DEBUG(std::endl); + simple_cycles.push_back(cycle); + // std::cout << "Cycles detected so far: " << simple_cycles.size() << std::endl; + dfs_stack.pop_back(); + found_cycle = true; + } else if (blocked_set.find(neighbour_id) == blocked_set.end()) { // neighbouring vertex not in blocked_set + bool got_cycle = find_simple_cycles_scc(scc, start_id, neighbour_id); + found_cycle = found_cycle || got_cycle; + } + }} + if (found_cycle) { + unblock(current_id); + } else { + {ForOutputEdges(scc, scc->getVertexById(current_id), e) { + ARRAY_INDEX block_dep_id = scc->getVertexId(scc->getEdgeTarget(e)); + VERBOSE_DEBUG("Adding " << block_dep_id << "->" << current_id << " to block map" << std::endl); + blocked_map[block_dep_id].insert(current_id); + }} + } + dfs_stack.pop_back(); + return found_cycle; +} + +// prints current status of dataflow graph +std::string algorithms::print_status(models::Dataflow* const dataflow) { + std::stringstream output_stream; + + output_stream << "\nActors:" << std::endl; + {ForEachVertex(dataflow, v) { + output_stream << dataflow->getVertexName(v) << std::endl; + }} + output_stream << "\nConnections:" << std::endl; + {ForEachEdge(dataflow, e) { + output_stream << "\tChannel " << dataflow->getEdgeName(e) << " (" + << dataflow->getVertexName(dataflow->getEdgeSource(e)) + << "->" + << dataflow->getVertexName(dataflow->getEdgeTarget(e)) + << "): " << std::endl; + }} + + return output_stream.str(); +} diff --git a/src/libkiter/algorithms/analysis/cycle_detection.h b/src/libkiter/algorithms/analysis/cycle_detection.h index bf37129f..cd2389db 100644 --- a/src/libkiter/algorithms/analysis/cycle_detection.h +++ b/src/libkiter/algorithms/analysis/cycle_detection.h @@ -10,6 +10,7 @@ #include +#include namespace models { class Dataflow; @@ -20,6 +21,18 @@ namespace algorithms { bool has_selfloops (models::Dataflow* const dataflow); bool has_cycles (models::Dataflow* const dataflow); void cycle_detection (models::Dataflow* const dataflow, parameters_list_t); + void find_simple_cycles(models::Dataflow* const dataflow, parameters_list_t); + ARRAY_INDEX find_smallest_index(models::Dataflow* const dataflow, + std::map> scc_map); + models::Dataflow* generate_scc(models::Dataflow* const dataflow, + std::map> scc_map, + ARRAY_INDEX start_id); + models::Dataflow* generate_subgraph(models::Dataflow* const dataflow, + ARRAY_INDEX lower_limit); + void unblock(ARRAY_INDEX id); + bool find_simple_cycles_scc(models::Dataflow* const scc, + ARRAY_INDEX start_id, ARRAY_INDEX current_id); + std::string print_status(models::Dataflow* const dataflow); } @@ -27,7 +40,8 @@ void cycle_detection (models::Dataflow* const dataflow, parameters_list_t ADD_TRANSFORMATION(CycleDetection, transformation_t({ "CycleDetection" , "CycleDetection.", algorithms::cycle_detection})); - +ADD_TRANSFORMATION(CycleCount, + transformation_t({ "CycleCount" , "Count number of simple cycles in graph.", algorithms::find_simple_cycles})); From 818dbd8b60d74673c7bf58828f0fc34392bf4551 Mon Sep 17 00:00:00 2001 From: jkmingwen Date: Thu, 6 Jan 2022 15:31:29 +0800 Subject: [PATCH 3/5] Update description of CycleDetection algorithm --- src/libkiter/algorithms/analysis/cycle_detection.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libkiter/algorithms/analysis/cycle_detection.h b/src/libkiter/algorithms/analysis/cycle_detection.h index cd2389db..e2af4910 100644 --- a/src/libkiter/algorithms/analysis/cycle_detection.h +++ b/src/libkiter/algorithms/analysis/cycle_detection.h @@ -39,7 +39,7 @@ void cycle_detection (models::Dataflow* const dataflow, parameters_list_t ADD_TRANSFORMATION(CycleDetection, - transformation_t({ "CycleDetection" , "CycleDetection.", algorithms::cycle_detection})); + transformation_t({ "CycleDetection" , "Returns 1 if there is a cycle in the graph and 0 if not..", algorithms::cycle_detection})); ADD_TRANSFORMATION(CycleCount, transformation_t({ "CycleCount" , "Count number of simple cycles in graph.", algorithms::find_simple_cycles})); From 194da900691ea79eb8a34f549fd5e26eca898598 Mon Sep 17 00:00:00 2001 From: jkmingwen Date: Sat, 8 Jan 2022 06:24:23 +0800 Subject: [PATCH 4/5] Add coarsening updates from 'kdse_experiments' branch --- src/libkiter/algorithms/dse/dse.cpp | 29 +- tools/sdf3.patch | 35411 +++++++++++++++++++++++++- 2 files changed, 35321 insertions(+), 119 deletions(-) diff --git a/src/libkiter/algorithms/dse/dse.cpp b/src/libkiter/algorithms/dse/dse.cpp index 390f3306..4f14a397 100644 --- a/src/libkiter/algorithms/dse/dse.cpp +++ b/src/libkiter/algorithms/dse/dse.cpp @@ -8,7 +8,9 @@ #include #include +#include #include +#include // to write XML files #include #include #include @@ -31,6 +33,8 @@ void algorithms::throughput_buffering_tradeoff_dse(models::Dataflow* const dataf bool isBaseMonoOpt = false; bool thrTargetSpecified = false; bool modelBoundedBuffers = true; + bool useCoarse = false; + int coarseMultiplier = 2; std::string dirName = "./data/"; // default // parse parameters for KDSE @@ -59,6 +63,10 @@ void algorithms::throughput_buffering_tradeoff_dse(models::Dataflow* const dataf parameters.find("SYMB_EXEC_CORRECTED") != parameters.end()) { modelBoundedBuffers = false; } + if (parameters.find("COARSE") != parameters.end()) { // use coarse step sizes (multiply by certain amount) + useCoarse = true; + coarseMultiplier = std::stoi(parameters["COARSE"]); + } @@ -275,6 +283,9 @@ void algorithms::throughput_buffering_tradeoff_dse(models::Dataflow* const dataf else { VERBOSE_WARNING("No DSE supported method specified; ending search."); } + if (useCoarse) { + methodName += "_coarse"; + } /* Initialise set of minimal storage distributions @@ -403,8 +414,13 @@ void algorithms::throughput_buffering_tradeoff_dse(models::Dataflow* const dataf VERBOSE_DSE("\tFound storage dependency in channel " << dataflow_prime->getEdgeName(*it) << std::endl); // make new modelled storage distribution according to storage dependencies - newDist.setChannelQuantity(*it, (newDist.getChannelQuantity(*it) + - minStepSizes[*it])); + if (!useCoarse) { + newDist.setChannelQuantity(*it, (newDist.getChannelQuantity(*it) + + minStepSizes[*it])); + } else { + newDist.setChannelQuantity(*it, (newDist.getChannelQuantity(*it) + + (minStepSizes[*it] * coarseMultiplier))); + } VERBOSE_DSE("\t\tIncreasing channel size of " << dataflow_prime->getEdgeName(*it) << " to " << newDist.getChannelQuantity(*it) << std::endl); @@ -416,8 +432,13 @@ void algorithms::throughput_buffering_tradeoff_dse(models::Dataflow* const dataf VERBOSE_DSE("\tFound storage dependency in channel " << dataflow->getEdgeName(*it) << std::endl); // make new modelled storage distribution according to storage dependencies - newDist.setChannelQuantity(*it, (newDist.getChannelQuantity(*it) + - minStepSizes[*it])); + if (!useCoarse) { + newDist.setChannelQuantity(*it, (newDist.getChannelQuantity(*it) + + minStepSizes[*it])); + } else { + newDist.setChannelQuantity(*it, (newDist.getChannelQuantity(*it) + + (minStepSizes[*it] * coarseMultiplier))); + } VERBOSE_DSE("\t\tIncreasing channel size of " << dataflow->getEdgeName(*it) << " to " << newDist.getChannelQuantity(*it) << std::endl); diff --git a/tools/sdf3.patch b/tools/sdf3.patch index 3cbeaa6c..e41ef63c 100644 --- a/tools/sdf3.patch +++ b/tools/sdf3.patch @@ -1,10 +1,34816 @@ -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 2021-11-22 17:23:41.774775777 +0800 -@@ -37,8 +37,27 @@ +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 @@ #include "buffer.h" #include "../throughput/throughput.h" ++#include +// libraries for data logging +#include +#include @@ -18,6 +34824,9 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 + #ifdef VERBOSE_OUT + long int computation_counter = 0; + #endif ++ bool useSCCStorageDeps = !strcmp(std::getenv("USE_SCC"), "true"); // TODO fix this workaround to not rely on keyword ++ bool useCoarse = !strcmp(std::getenv("COARSE"), "true"); // TODO fix this workaround to not rely on keyword ++ int coarseMultiplier = 2; + // variables for data logging + #ifdef LOG_OUT + std::string dirName = std::getenv("SDF3LOGDIR"); @@ -29,7 +34838,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 /****************************************************************************** * Bounds on the search space -@@ -62,6 +81,9 @@ +@@ -62,6 +85,9 @@ */ void CSDFstateSpaceBufferAnalysis::initMinimalChannelSzStep(TimedCSDFgraph *g) { @@ -39,7 +34848,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 minSzStep = new TBufSize [g->nrChannels()]; for (CSDFchannelsIter iter = g->channelsBegin(); iter != g->channelsEnd(); -@@ -84,6 +106,10 @@ +@@ -84,6 +110,10 @@ minStepSz = gcd(minStepSz, dstPort->getRate()[i]); minSzStep[ch->getId()] = minStepSz; @@ -50,7 +34859,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 } } -@@ -93,6 +119,9 @@ +@@ -93,6 +123,9 @@ */ void CSDFstateSpaceBufferAnalysis::initMinimalChannelSz(TimedCSDFgraph *g) { @@ -60,7 +34869,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 minSz = new TBufSize [g->nrChannels()]; for (CSDFchannelsIter iter = g->channelsBegin(); iter != g->channelsEnd(); -@@ -116,6 +145,9 @@ +@@ -116,6 +149,9 @@ uint t = ch->getInitialTokens(); uint lb; @@ -70,7 +34879,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 // 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 +166,10 @@ +@@ -134,6 +170,10 @@ if (lb < minSz[ch->getId()]) minSz[ch->getId()] = lb; } @@ -81,7 +34890,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 } } -@@ -147,6 +183,9 @@ +@@ -147,6 +187,9 @@ for (uint c = 0; c < g->nrChannels(); c++) lbDistributionSz += minSz[c]; @@ -91,7 +34900,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 } /** -@@ -158,6 +197,9 @@ +@@ -158,6 +201,9 @@ CSDFstateSpaceThroughputAnalysis thrAnalysisAlgo; maxThroughput = thrAnalysisAlgo.analyze(g); @@ -101,7 +34910,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 } /****************************************************************************** -@@ -350,7 +392,12 @@ +@@ -350,7 +396,12 @@ // Time between previous state time += s.glbClk; } @@ -115,7 +34924,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 return (TDtime)(nr_fire) / (time); } -@@ -382,6 +429,10 @@ +@@ -382,6 +433,10 @@ if (color[b] == 1) { // Found a cycle in the graph containing node b @@ -126,7 +34935,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 c = a; d = b; do -@@ -396,7 +447,12 @@ +@@ -396,7 +451,12 @@ CId dstId = ch->getDstActor()->getId(); if (dstId == d && srcId == c) @@ -139,7 +34948,129 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 } // Next -@@ -520,6 +576,9 @@ +@@ -459,6 +519,121 @@ + delete [] pi; + } + ++ /** ++ * findStorageDependenciesSCC () ++ * The function find all cycles in the abstract dependency graph using ++ * strongly-connected components ++ */ ++ void CSDFstateSpaceBufferAnalysis::TransitionSystem ++ ::findStorageDependenciesSCC(bool **abstractDepGraph, bool *dep) ++ { ++ int *visited; ++ std::stack dfsOrder; ++ std::vector sccNodes; ++ int sccCount = 1; ++ std::map> sccMap; ++ ++ // Initialize DFS data structures ++ visited = new int [g->nrActors()]; ++ for (uint i = 0; i < g->nrActors(); i++) ++ visited[i] = 0; ++ ++ // Initialize storage dependencies ++ for (uint c = 0; c < g->nrChannels(); c++) ++ dep[c] = false; ++ ++ // DFS from every node in the graph to find all cycles ++ for (uint i = 0; i < g->nrActors(); i++) ++ { ++ if (!visited[i]) { ++ // compute dfs stack ++ computeDFSStack(i, visited, abstractDepGraph, dfsOrder); ++ } ++ } ++ ++ // reset visited node list ++ for (uint i = 0; i < g->nrActors(); i++) { ++ visited[i] = 0; ++ } ++ ++ // perform transpose dfs according to dfs stack ++ while (!dfsOrder.empty()) ++ { ++ int firstId = dfsOrder.top(); ++ dfsOrder.pop(); ++ if (!visited[firstId]) ++ { ++ dfsTranspose(firstId, visited, abstractDepGraph, sccNodes); ++ sccMap[sccCount] = sccNodes; ++ sccCount++; ++ sccNodes.clear(); ++ } ++ } ++ ++ // look for actors in the same SCC --- channel connecting them will have storage dep ++ for (CSDFchannelsIter iter = g->channelsBegin(); ++ iter != g->channelsEnd(); iter++) ++ { ++ CSDFchannel *ch = *iter; ++ CId srcId = ch->getSrcActor()->getId(); ++ CId dstId = ch->getDstActor()->getId(); ++ ++ if (abstractDepGraph[srcId][dstId]) ++ { ++ for (auto const& component : sccMap) ++ { ++ bool srcActorInSCC = std::find(component.second.begin(), ++ component.second.end(), srcId) != component.second.end(); ++ bool dstActorInSCC = std::find(component.second.begin(), ++ component.second.end(), dstId) != component.second.end(); ++ if (srcActorInSCC && dstActorInSCC) ++ { ++ dep[ch->getId()] = true; ++ } ++ } ++ } ++ } ++ ++ // Cleanup ++ delete [] visited; ++ } ++ ++ void CSDFstateSpaceBufferAnalysis::TransitionSystem ++ ::computeDFSStack(uint startId, int *visited, bool **abstractDepGraph, ++ std::stack &dfsOrder) ++ { ++ if (visited[startId]) { ++ return; ++ } ++ visited[startId] = 1; ++ for (uint adjId = 0; adjId < g->nrActors(); adjId++) ++ { ++ if (abstractDepGraph[startId][adjId]) ++ { ++ computeDFSStack(adjId, visited, abstractDepGraph, dfsOrder); ++ } ++ } ++ dfsOrder.push(startId); ++ } ++ ++ void CSDFstateSpaceBufferAnalysis::TransitionSystem ++ ::dfsTranspose(uint startId, int *visited, bool **abstractDepGraph, ++ std::vector &sccNodes) ++ { ++ if (visited[startId]) { ++ return; ++ } ++ visited[startId] = 1; ++ sccNodes.push_back(startId); ++ ++ for (uint adjId = 0; adjId < g->nrActors(); adjId++) ++ { ++ if (abstractDepGraph[adjId][startId]) ++ { ++ dfsTranspose(adjId, visited, abstractDepGraph, sccNodes); ++ } ++ } ++ } + /****************************************************************************** + * CSDF + *****************************************************************************/ +@@ -520,6 +695,9 @@ void CSDFstateSpaceBufferAnalysis::TransitionSystem::startActorFiring( TimedCSDFactor *a) { @@ -149,7 +35080,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 // Consume tokens from inputs and space for output tokens for (CSDFportsIter iter = a->portsBegin(); iter != a->portsEnd(); iter++) { -@@ -529,20 +588,37 @@ +@@ -529,20 +707,37 @@ // Actor is destination of the channel? if (p->getType() == CSDFport::In) { @@ -188,7 +35119,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 } /** -@@ -571,6 +647,9 @@ +@@ -571,6 +766,9 @@ void CSDFstateSpaceBufferAnalysis::TransitionSystem::endActorFiring( CSDFactor *a) { @@ -198,7 +35129,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 for (CSDFportsIter iter = a->portsBegin(); iter != a->portsEnd(); iter++) { CSDFport *p = *iter; -@@ -584,16 +663,28 @@ +@@ -584,16 +782,28 @@ // Actor is source of the channel? if (p->getType() == CSDFport::Out) { @@ -228,7 +35159,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 } /** -@@ -669,6 +760,17 @@ +@@ -669,6 +879,17 @@ if (!CH_TOKENS_PREV(c->getId(), p->getRate()[ACT_SEQ_POS(a->getId())])) { @@ -246,7 +35177,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 abstractDepGraph[dstActor->getId()][srcActor->getId()] = true; } } -@@ -678,6 +780,17 @@ +@@ -678,6 +899,17 @@ if (!CH_SPACE_PREV(c->getId(), p->getRate()[ACT_SEQ_POS(a->getId())])) { @@ -264,7 +35195,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 abstractDepGraph[srcActor->getId()][dstActor->getId()] = true; } } -@@ -708,26 +821,46 @@ +@@ -708,26 +940,46 @@ for (uint j = 0; j < g->nrActors(); j++) abstractDepGraph[i][j] = false; } @@ -312,7 +35243,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 currentState.glbClk = 0; repCnt = 0; } -@@ -749,6 +882,10 @@ +@@ -749,6 +1001,10 @@ // Ready to fire actor a? while (actorReadyToFire(a)) { @@ -323,7 +35254,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 // Track causal dependencies on firing of actor a findCausalDependencies(a, abstractDepGraph); -@@ -760,6 +897,9 @@ +@@ -760,6 +1016,9 @@ // Clock step clockStep(); @@ -333,7 +35264,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 // Store partial state to check for progress for (uint i = 0; i < g->nrChannels(); i++) { -@@ -768,6 +908,9 @@ +@@ -768,6 +1027,9 @@ } // Finish actor firings @@ -343,7 +35274,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 for (CSDFactorsIter iter = g->actorsBegin(); iter != g->actorsEnd(); iter++) { -@@ -775,14 +918,28 @@ +@@ -775,14 +1037,28 @@ while (actorReadyToEnd(a)) { @@ -372,7 +35303,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 // Cycles in the dependency graph indicate storage // dependencies findStorageDependencies(abstractDepGraph, dep); -@@ -795,6 +952,9 @@ +@@ -795,6 +1071,9 @@ // Done return; } @@ -382,7 +35313,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 currentState.glbClk = 0; repCnt = 0; } -@@ -824,6 +984,9 @@ +@@ -824,6 +1103,9 @@ for (uint j = 0; j < g->nrActors(); j++) abstractDepGraph[i][j] = false; } @@ -392,7 +35323,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 // Check number of tokens on every channel in the graph for (CSDFchannelsIter iter = g->channelsBegin(); -@@ -837,6 +1000,12 @@ +@@ -837,6 +1119,12 @@ if (!CH_TOKENS(c->getId(), c->getDstPort()->getRate()[ACT_SEQ_POS(dstActor->getId())])) { @@ -405,7 +35336,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 abstractDepGraph[dstActor->getId()][srcActor->getId()] = true; } -@@ -844,6 +1013,12 @@ +@@ -844,6 +1132,12 @@ if (!CH_SPACE(c->getId(), c->getSrcPort()->getRate()[ACT_SEQ_POS(srcActor->getId())])) { @@ -418,7 +35349,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 abstractDepGraph[srcActor->getId()][dstActor->getId()] = true; } } -@@ -873,6 +1048,10 @@ +@@ -873,6 +1167,10 @@ clearStoredStates(); // Create initial state @@ -429,7 +35360,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 currentState.init(g->nrActors(), g->nrChannels()); currentState.clear(); previousState.init(g->nrActors(), g->nrChannels()); -@@ -891,11 +1070,22 @@ +@@ -891,11 +1189,22 @@ return 0; } @@ -452,7 +35383,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 while (true) { // Store partial state to check for progress -@@ -913,15 +1103,28 @@ +@@ -913,15 +1222,28 @@ while (actorReadyToEnd(a)) { @@ -482,7 +35413,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 analyzePeriodicPhase(sp, dep); return computeThroughput(recurrentState); -@@ -945,6 +1148,9 @@ +@@ -945,6 +1267,9 @@ // Ready to fire actor a? while (actorReadyToFire(a)) { @@ -492,7 +35423,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 // Fire actor a startActorFiring(a); } -@@ -952,10 +1158,16 @@ +@@ -952,10 +1277,16 @@ // Clock step clkStep = clockStep(); @@ -509,7 +35440,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 // Find cause of deadlock analyzeDeadlock(sp, dep); return 0; -@@ -1015,6 +1227,46 @@ +@@ -1015,6 +1346,46 @@ //for (uint c = 0; c < g->nrChannels(); c++) // cerr << d->sp[c] << " " << d->dep[c] << endl; //cerr << endl; @@ -556,7 +35487,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 } /** -@@ -1032,6 +1284,10 @@ +@@ -1032,6 +1403,10 @@ // throughput with previous (smaller) distribution size if (ds->prev != NULL && ds->prev->thr == ds->thr) { @@ -567,7 +35498,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 // No minimal storage distributions exist in this list // Iterate over the list of storage distributions d = ds->distributions; -@@ -1072,6 +1328,10 @@ +@@ -1072,6 +1447,10 @@ t = d->next; // Cleanup d @@ -578,7 +35509,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 deleteStorageDistribution(d); // Next -@@ -1102,9 +1362,16 @@ +@@ -1102,9 +1481,16 @@ StorageDistribution *di; bool equalDistr; @@ -595,7 +35526,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 // Create new set of storage distributions dsNew = new StorageDistributionSet; dsNew->sz = d->sz; -@@ -1147,14 +1414,21 @@ +@@ -1147,14 +1533,21 @@ } // Found equal distribution @@ -619,7 +35550,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 ds->distributions->prev = d; d->next = ds->distributions; ds->distributions = d; -@@ -1162,7 +1436,9 @@ +@@ -1162,7 +1555,9 @@ else if (ds->next == NULL) { // No set of distribution in the list with same or larger size? @@ -630,7 +35561,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 // Create new set of storage distributions dsNew = new StorageDistributionSet; dsNew->sz = d->sz; -@@ -1182,6 +1458,9 @@ +@@ -1182,6 +1577,9 @@ // distribution 'd'. // Create new set of storage distributions @@ -640,7 +35571,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 dsNew = new StorageDistributionSet; dsNew->sz = d->sz; dsNew->thr = 0; -@@ -1211,13 +1490,30 @@ +@@ -1211,13 +1609,30 @@ { StorageDistribution *dNew; @@ -671,7 +35602,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 // Create new storage distributions for every channel which // has a storage dependency in d for (uint c = 0; c < g->nrChannels(); c++) -@@ -1225,10 +1521,17 @@ +@@ -1225,25 +1640,48 @@ // Channel c has storage dependency? if (d->dep[c]) { @@ -691,14 +35622,23 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 // Create new storage distribution with channel c enlarged dNew = newStorageDistribution(); -@@ -1237,13 +1540,21 @@ +- dNew->sz = d->sz + minSzStep[c]; ++ if (!useCoarse) { ++ dNew->sz = d->sz + minSzStep[c]; ++ } else { ++ dNew->sz = d->sz + minSzStep[c] * coarseMultiplier; ++ } + dNew->thr = 0; for (uint i = 0; i < g->nrChannels(); i++) { dNew->sp[i] = d->sp[i]; - if (i == c) -- dNew->sp[i] += minSzStep[c]; + if (i == c) { -+ dNew->sp[i] += minSzStep[c]; ++ if (!useCoarse) { + dNew->sp[i] += minSzStep[c]; ++ } else { ++ dNew->sp[i] += minSzStep[c] * coarseMultiplier; ++ } + #ifdef VERBOSE_OUT + cout << "\t\tIncreasing channel size of " << g->getChannel(c)->getName() + << " to " << dNew->sp[i] << endl; @@ -715,7 +35655,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 if (!addStorageDistributionToChecklist(dNew)) { // Distribution already in check list -@@ -1267,6 +1578,9 @@ +@@ -1267,6 +1705,9 @@ d = ds->distributions; while (d != NULL) { @@ -725,7 +35665,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 // Explore distribution d exploreStorageDistribution(ds, d); -@@ -1275,6 +1589,10 @@ +@@ -1275,6 +1716,10 @@ } // Remove all non-minimal storage distributions from the set @@ -736,14 +35676,23 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 minimizeStorageDistributionsSet(ds); } -@@ -1305,6 +1623,17 @@ +@@ -1305,6 +1750,26 @@ // Check sets of storage distributions till no distributions left to check, // or throughput bound exceeded, or maximal throughput reached ds = minStorageDistributions; + + // Initialise log file + #ifdef LOG_OUT -+ dseLog.open(dirName + logDirName + g->getName() + "_dselog_sdf3.csv"); ++ std::string dseMethodName; ++ if (useSCCStorageDeps) { ++ dseMethodName = "_dselog_sdf3_corrected"; ++ } else { ++ dseMethodName = "_dselog_sdf3"; ++ } ++ if (useCoarse) { ++ dseMethodName += "_coarse"; ++ } ++ dseLog.open(dirName + logDirName + g->getName() + dseMethodName + ".csv"); + dseLog << "storage distribution size;throughput;channel quantities;computation duration;cumulative duration" + << endl; // initialise headers + #endif @@ -754,7 +35703,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 while (ds != NULL) { // Explore all distributions with size 'ds->sz' -@@ -1390,6 +1719,74 @@ +@@ -1390,6 +1855,83 @@ for (uint c = 0; c < g->nrChannels(); c++) minStorageDistributions->distributions->sp[c] = 0; } @@ -796,7 +35745,16 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 + dseLog.close(); // DSE logging ends at this point + // Variables for pareto point logging + ofstream ppLog; -+ ppLog.open(dirName + ppDirName + g->getName() + "_pp_sdf3.csv"); ++ std::string ppMethodName; ++ if (useSCCStorageDeps) { ++ ppMethodName = "_pp_sdf3_corrected"; ++ } else { ++ ppMethodName = "_pp_sdf3"; ++ } ++ if (useCoarse) { ++ ppMethodName += "_coarse"; ++ } ++ ppLog.open(dirName + ppDirName + g->getName() + ppMethodName + ".csv"); + // Initialise log file + ppLog << "storage distribution size;throughput;channel quantities" << endl; + @@ -829,7 +35787,7 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 } /** -@@ -1409,6 +1806,9 @@ +@@ -1409,6 +1951,9 @@ minStorageDistributions = NULL; // Initialize bounds on the search space @@ -839,9 +35797,34 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3 initBoundsSearchSpace(g); // Create a transition system -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 2021-11-18 12:02:46.475286851 +0800 +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 +@@ -40,6 +40,7 @@ + + #include "sdf/sdf.h" + #include "../../base/timed/graph.h" ++#include + namespace CSDF + { + /** +@@ -154,6 +155,13 @@ + void findCausalDependencies(CSDFactor *a, bool **abstractDepGraph); + void analyzePeriodicPhase(const TBufSize *sp, bool *dep); + void analyzeDeadlock(const TBufSize *sp, bool *dep); ++ void findStorageDependenciesSCC(bool **abstractDepGraph, bool *dep); ++ void computeDFSStack(uint startId, int *visited, ++ bool **abstractDepGraph, ++ std::stack &dfsOrder); ++ void dfsTranspose(uint startId, int *visited, ++ bool **abstractDepGraph, ++ std::vector &sccNodes); + + // 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 @@ -38,7 +38,7 @@ namespace CSDF @@ -965,9 +35948,9 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/throughput/selftimed_throughput.cc sdf3 return 0; } -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 2021-11-18 12:02:46.467287186 +0800 +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 @@ -0,0 +1,688 @@ +/* + * TU Eindhoven @@ -1657,9 +36640,9 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/throughput/selftimed_throughput.cc.orig + return thr; + } +}//namespace CSDF -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 2021-11-18 12:02:46.475286851 +0800 +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 @@ -0,0 +1,1380 @@ +*** buffer.cc 2014-07-24 12:16:04.000000000 +0800 +--- buffer.cc 2021-01-21 15:26:47.935610418 +0800 @@ -3041,9 +38024,9 @@ diff -ruN sdf3-140724/sdf3/csdf/analysis/throughput/selftimed_throughput.cc.rej + while (ds != NULL) + { + // Explore all distributions with size 'ds->sz' -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 2021-11-18 12:03:13.758012789 +0800 +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 @@ -293,6 +293,10 @@ out << " [" << g->getActor(i)->getName() << "] = "; out << repetitionVector[i] << endl; @@ -3072,9 +38055,9 @@ diff -ruN sdf3-140724/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc sdf3_custom/s out << endl; } -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 2021-11-18 12:03:13.762012584 +0800 +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 @@ -0,0 +1,431 @@ +/* + * TU Eindhoven @@ -3507,9 +38490,9 @@ diff -ruN sdf3-140724/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc.orig sdf3_cus + return exit_status; +} + -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 2021-11-18 12:03:13.762012584 +0800 +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 @@ -0,0 +1,1517 @@ +*** buffer.cc 2014-07-24 12:16:04.000000000 +0800 +--- buffer.cc 2021-01-21 15:26:47.935610418 +0800 @@ -5028,20 +40011,24 @@ diff -ruN sdf3-140724/sdf3/csdf/tools/sdf3analysis/sdf3analysis.cc.rej sdf3_cust + } + + /** -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 2021-11-22 17:23:16.128365608 +0800 -@@ -38,9 +38,20 @@ +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 @@ #include "buffer.h" #include "../../base/algo/repetition_vector.h" #include "../throughput/throughput.h" - ++#include +// libraries for data logging +#include +#include +#define LOG_OUT // log data of DSE in CSVs namespace SDF { ++ bool useSCCStorageDeps = !strcmp(std::getenv("USE_SCC"), "true"); // TODO fix this workaround to not rely on keyword ++ bool useCoarse = !strcmp(std::getenv("COARSE"), "true"); // TODO fix this workaround to not rely on keyword ++ int coarseMultiplier = 2; + // variables for data logging +#ifdef LOG_OUT + std::string dirName = std::getenv("SDF3LOGDIR"); @@ -5053,7 +40040,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ /****************************************************************************** * Bounds on the search space *****************************************************************************/ -@@ -63,6 +74,9 @@ +@@ -63,6 +78,9 @@ */ void SDFstateSpaceBufferAnalysis::initMinimalChannelSzStep(TimedSDFgraph *g) { @@ -5063,7 +40050,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ minSzStep = new TBufSize [g->nrChannels()]; for (SDFchannelsIter iter = g->channelsBegin(); iter != g->channelsEnd(); -@@ -78,6 +92,10 @@ +@@ -78,6 +96,10 @@ minStepSz = gcd(p, c); minSzStep[ch->getId()] = minStepSz; @@ -5074,7 +40061,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ } } -@@ -87,6 +105,9 @@ +@@ -87,6 +109,9 @@ */ void SDFstateSpaceBufferAnalysis::initMinimalChannelSz(TimedSDFgraph *g) { @@ -5084,7 +40071,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ minSz = new TBufSize [g->nrChannels()]; for (SDFchannelsIter iter = g->channelsBegin(); iter != g->channelsEnd(); -@@ -245,6 +266,10 @@ +@@ -245,6 +270,10 @@ a = *iter; min = repVec[a->getId()]; } @@ -5095,7 +40082,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ } // Set output actor and its repetition vector count -@@ -309,7 +334,12 @@ +@@ -309,7 +338,12 @@ // Time between previous state time += s.glbClk; } @@ -5109,7 +40096,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ return (TDtime)(nr_fire) / (time); } -@@ -341,6 +371,10 @@ +@@ -341,6 +375,10 @@ if (color[b] == 1) { // Found a cycle in the graph containing node b @@ -5120,7 +40107,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ c = a; d = b; do -@@ -355,7 +389,12 @@ +@@ -355,7 +393,12 @@ CId dstId = ch->getDstActor()->getId(); if (dstId == d && srcId == c) @@ -5133,7 +40120,130 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ } // Next -@@ -477,6 +516,9 @@ +@@ -418,6 +461,122 @@ + delete [] pi; + } + ++ /** ++ * findStorageDependenciesSCC () ++ * The function find all cycles in the abstract dependency graph using ++ * strongly-connected components ++ */ ++ void SDFstateSpaceBufferAnalysis::TransitionSystem ++ ::findStorageDependenciesSCC(bool **abstractDepGraph, bool *dep) ++ { ++ int *visited; ++ std::stack dfsOrder; ++ std::vector sccNodes; ++ int sccCount = 1; ++ std::map> sccMap; ++ ++ // Initialize DFS data structures ++ visited = new int [g->nrActors()]; ++ for (uint i = 0; i < g->nrActors(); i++) ++ visited[i] = 0; ++ ++ // Initialize storage dependencies ++ for (uint c = 0; c < g->nrChannels(); c++) ++ dep[c] = false; ++ ++ // DFS from every node in the graph to find all cycles ++ for (uint i = 0; i < g->nrActors(); i++) ++ { ++ if (!visited[i]) { ++ // compute dfs stack ++ computeDFSStack(i, visited, abstractDepGraph, dfsOrder); ++ } ++ } ++ ++ // reset visited node list ++ for (uint i = 0; i < g->nrActors(); i++) { ++ visited[i] = 0; ++ } ++ ++ // perform transpose dfs according to dfs stack ++ while (!dfsOrder.empty()) ++ { ++ int firstId = dfsOrder.top(); ++ dfsOrder.pop(); ++ if (!visited[firstId]) ++ { ++ dfsTranspose(firstId, visited, abstractDepGraph, sccNodes); ++ sccMap[sccCount] = sccNodes; ++ sccCount++; ++ sccNodes.clear(); ++ } ++ } ++ ++ // look for actors in the same SCC --- channel connecting them will have storage dep ++ for (SDFchannelsIter iter = g->channelsBegin(); ++ iter != g->channelsEnd(); iter++) ++ { ++ SDFchannel *ch = *iter; ++ CId srcId = ch->getSrcActor()->getId(); ++ CId dstId = ch->getDstActor()->getId(); ++ ++ if (abstractDepGraph[srcId][dstId]) ++ { ++ for (auto const& component : sccMap) ++ { ++ bool srcActorInSCC = std::find(component.second.begin(), ++ component.second.end(), srcId) != component.second.end(); ++ bool dstActorInSCC = std::find(component.second.begin(), ++ component.second.end(), dstId) != component.second.end(); ++ if (srcActorInSCC && dstActorInSCC) ++ { ++ dep[ch->getId()] = true; ++ } ++ } ++ } ++ } ++ ++ // Cleanup ++ delete [] visited; ++ } ++ ++ void SDFstateSpaceBufferAnalysis::TransitionSystem ++ ::computeDFSStack(uint startId, int *visited, bool **abstractDepGraph, ++ std::stack &dfsOrder) ++ { ++ if (visited[startId]) { ++ return; ++ } ++ visited[startId] = 1; ++ for (uint adjId = 0; adjId < g->nrActors(); adjId++) ++ { ++ if (abstractDepGraph[startId][adjId]) ++ { ++ computeDFSStack(adjId, visited, abstractDepGraph, dfsOrder); ++ } ++ } ++ dfsOrder.push(startId); ++ } ++ ++ void SDFstateSpaceBufferAnalysis::TransitionSystem ++ ::dfsTranspose(uint startId, int *visited, bool **abstractDepGraph, ++ std::vector &sccNodes) ++ { ++ if (visited[startId]) { ++ return; ++ } ++ visited[startId] = 1; ++ sccNodes.push_back(startId); ++ ++ for (uint adjId = 0; adjId < g->nrActors(); adjId++) ++ { ++ if (abstractDepGraph[adjId][startId]) ++ { ++ dfsTranspose(adjId, visited, abstractDepGraph, sccNodes); ++ } ++ } ++ } ++ + /****************************************************************************** + * SDF + *****************************************************************************/ +@@ -477,6 +636,9 @@ void SDFstateSpaceBufferAnalysis::TransitionSystem::startActorFiring( TimedSDFactor *a) { @@ -5143,7 +40253,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ // Consume tokens from inputs and space for output tokens for (SDFportsIter iter = a->portsBegin(); iter != a->portsEnd(); iter++) { -@@ -614,6 +656,17 @@ +@@ -614,6 +776,17 @@ // Not enough tokens in the previous state? if (!CH_TOKENS_PREV(c->getId(), p->getRate())) { @@ -5161,7 +40271,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ abstractDepGraph[dstActor->getId()][srcActor->getId()] = true; } } -@@ -622,6 +675,17 @@ +@@ -622,6 +795,17 @@ // Not enough space in the previous state? if (!CH_SPACE_PREV(c->getId(), p->getRate())) { @@ -5179,7 +40289,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ abstractDepGraph[srcActor->getId()][dstActor->getId()] = true; } } -@@ -693,6 +757,10 @@ +@@ -693,6 +877,10 @@ // Ready to fire actor a? while (actorReadyToFire(a)) { @@ -5190,7 +40300,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ // Track causal dependencies on firing of actor a findCausalDependencies(a, abstractDepGraph); -@@ -704,6 +772,9 @@ +@@ -704,6 +892,9 @@ // Clock step clockStep(); @@ -5200,7 +40310,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ // Store partial state to check for progress for (uint i = 0; i < g->nrChannels(); i++) { -@@ -719,14 +790,28 @@ +@@ -719,17 +910,35 @@ while (actorReadyToEnd(a)) { @@ -5228,8 +40338,15 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ + #endif // Cycles in the dependency graph indicate storage // dependencies ++ if (useSCCStorageDeps) { ++ findStorageDependenciesSCC(abstractDepGraph, dep); ++ } else { findStorageDependencies(abstractDepGraph, dep); -@@ -739,6 +824,9 @@ ++ } + + // Cleanup + for (uint i = 0; i < g->nrActors(); i++) +@@ -739,6 +948,9 @@ // Done return; } @@ -5239,7 +40356,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ currentState.glbClk = 0; repCnt = 0; } -@@ -768,6 +856,9 @@ +@@ -768,6 +980,9 @@ for (uint j = 0; j < g->nrActors(); j++) abstractDepGraph[i][j] = false; } @@ -5249,7 +40366,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ // Check number of tokens on every channel in the graph for (SDFchannelsIter iter = g->channelsBegin(); -@@ -780,12 +871,24 @@ +@@ -780,18 +995,34 @@ // Insufficient tokens to fire destination actor if (!CH_TOKENS(c->getId(), c->getDstPort()->getRate())) { @@ -5274,7 +40391,18 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ abstractDepGraph[srcActor->getId()][dstActor->getId()] = true; } } -@@ -815,6 +918,10 @@ + + // Cycles in the dependency graph indicate storage dependencies +- findStorageDependencies(abstractDepGraph, dep); ++ if (useSCCStorageDeps) { ++ findStorageDependenciesSCC(abstractDepGraph, dep); ++ } else { ++ findStorageDependencies(abstractDepGraph, dep); ++ } + + // Cleanup + for (uint i = 0; i < g->nrActors(); i++) +@@ -815,6 +1046,10 @@ clearStoredStates(); // Create initial state @@ -5285,7 +40413,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ currentState.init(g->nrActors(), g->nrChannels()); currentState.clear(); previousState.init(g->nrActors(), g->nrChannels()); -@@ -833,11 +940,22 @@ +@@ -833,11 +1068,22 @@ return 0; } @@ -5308,7 +40436,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ while (true) { // Store partial state to check for progress -@@ -855,15 +973,28 @@ +@@ -855,15 +1101,28 @@ while (actorReadyToEnd(a)) { @@ -5338,7 +40466,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ analyzePeriodicPhase(sp, dep); return computeThroughput(recurrentState); -@@ -887,6 +1018,9 @@ +@@ -887,6 +1146,9 @@ // Ready to fire actor a? while (actorReadyToFire(a)) { @@ -5348,7 +40476,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ // Fire actor a startActorFiring(a); } -@@ -894,10 +1028,16 @@ +@@ -894,10 +1156,16 @@ // Clock step clkStep = clockStep(); @@ -5365,7 +40493,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ // Find cause of deadlock analyzeDeadlock(sp, dep); return 0; -@@ -957,6 +1097,28 @@ +@@ -957,6 +1225,28 @@ //for (uint c = 0; c < g->nrChannels(); c++) // cerr << d->sp[c] << " " << d->dep[c] << endl; //cerr << endl; @@ -5394,7 +40522,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ } /** -@@ -974,6 +1136,10 @@ +@@ -974,6 +1264,10 @@ // throughput with previous (smaller) distribution size if (ds->prev != NULL && ds->prev->thr == ds->thr) { @@ -5405,7 +40533,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ // No minimal storage distributions exist in this list // Iterate over the list of storage distributions d = ds->distributions; -@@ -1014,6 +1180,10 @@ +@@ -1014,6 +1308,10 @@ t = d->next; // Cleanup d @@ -5416,7 +40544,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ deleteStorageDistribution(d); // Next -@@ -1044,9 +1214,16 @@ +@@ -1044,9 +1342,16 @@ StorageDistribution *di; bool equalDistr; @@ -5433,7 +40561,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ // Create new set of storage distributions dsNew = new StorageDistributionSet; dsNew->sz = d->sz; -@@ -1089,14 +1266,21 @@ +@@ -1089,14 +1394,21 @@ } // Found equal distribution @@ -5457,7 +40585,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ ds->distributions->prev = d; d->next = ds->distributions; ds->distributions = d; -@@ -1104,7 +1288,9 @@ +@@ -1104,7 +1416,9 @@ else if (ds->next == NULL) { // No set of distribution in the list with same or larger size? @@ -5468,7 +40596,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ // Create new set of storage distributions dsNew = new StorageDistributionSet; dsNew->sz = d->sz; -@@ -1124,6 +1310,9 @@ +@@ -1124,6 +1438,9 @@ // distribution 'd'. // Create new set of storage distributions @@ -5478,7 +40606,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ dsNew = new StorageDistributionSet; dsNew->sz = d->sz; dsNew->thr = 0; -@@ -1153,13 +1342,30 @@ +@@ -1153,13 +1470,30 @@ { StorageDistribution *dNew; @@ -5509,7 +40637,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ // Create new storage distributions for every channel which // has a storage dependency in d for (uint c = 0; c < g->nrChannels(); c++) -@@ -1167,10 +1373,17 @@ +@@ -1167,25 +1501,48 @@ // Channel c has storage dependency? if (d->dep[c]) { @@ -5529,14 +40657,23 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ // Create new storage distribution with channel c enlarged dNew = newStorageDistribution(); -@@ -1179,13 +1392,21 @@ +- dNew->sz = d->sz + minSzStep[c]; ++ if (!useCoarse) { ++ dNew->sz = d->sz + minSzStep[c]; ++ } else { ++ dNew->sz = d->sz + minSzStep[c] * coarseMultiplier; ++ } + dNew->thr = 0; for (uint i = 0; i < g->nrChannels(); i++) { dNew->sp[i] = d->sp[i]; - if (i == c) -- dNew->sp[i] += minSzStep[c]; + if (i == c) { -+ dNew->sp[i] += minSzStep[c]; ++ if (!useCoarse) { + dNew->sp[i] += minSzStep[c]; ++ } else { ++ dNew->sp[i] += minSzStep[c] * coarseMultiplier; ++ } + #ifdef VERBOSE_OUT + cout << "\t\tIncreasing channel size of " << g->getChannel(c)->getName() + << " to " << dNew->sp[i] << endl; @@ -5553,7 +40690,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ if (!addStorageDistributionToChecklist(dNew)) { // Distribution already in check list -@@ -1209,6 +1430,9 @@ +@@ -1209,6 +1566,9 @@ d = ds->distributions; while (d != NULL) { @@ -5563,7 +40700,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ // Explore distribution d exploreStorageDistribution(ds, d); -@@ -1217,6 +1441,10 @@ +@@ -1217,6 +1577,10 @@ } // Remove all non-minimal storage distributions from the set @@ -5574,14 +40711,23 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ minimizeStorageDistributionsSet(ds); } -@@ -1247,6 +1475,17 @@ +@@ -1247,6 +1611,26 @@ // Check sets of storage distributions till no distributions left to check, // or throughput bound exceeded, or maximal throughput reached ds = minStorageDistributions; + + // Initialise log file + #ifdef LOG_OUT -+ dseLog.open(dirName + logDirName + g->getName() + "_dselog_sdf3.csv"); ++ std::string dseMethodName; ++ if (useSCCStorageDeps) { ++ dseMethodName = "_dselog_sdf3_corrected"; ++ } else { ++ dseMethodName = "_dselog_sdf3"; ++ } ++ if (useCoarse) { ++ dseMethodName += "_coarse"; ++ } ++ dseLog.open(dirName + logDirName + g->getName() + dseMethodName + ".csv"); + dseLog << "storage distribution size;throughput;channel quantities;computation duration;cumulative duration" + << endl; // initialise headers + #endif @@ -5592,7 +40738,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ while (ds != NULL) { // Explore all distributions with size 'ds->sz' -@@ -1332,6 +1571,74 @@ +@@ -1332,6 +1716,83 @@ for (uint c = 0; c < g->nrChannels(); c++) minStorageDistributions->distributions->sp[c] = 0; } @@ -5634,7 +40780,16 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ + dseLog.close(); // DSE logging ends at this point + // Variables for pareto point logging + ofstream ppLog; -+ ppLog.open(dirName + ppDirName + g->getName() + "_pp_sdf3.csv"); ++ std::string ppMethodName; ++ if (useSCCStorageDeps) { ++ ppMethodName = "_pp_sdf3_corrected"; ++ } else { ++ ppMethodName = "_pp_sdf3"; ++ } ++ if (useCoarse) { ++ ppMethodName += "_coarse"; ++ } ++ ppLog.open(dirName + ppDirName + g->getName() + ppMethodName + ".csv"); + // Initialise log file + ppLog << "storage distribution size;throughput;channel quantities" << endl; + @@ -5667,7 +40822,7 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ } /** -@@ -1351,6 +1658,9 @@ +@@ -1351,6 +1812,9 @@ minStorageDistributions = NULL; // Initialize bounds on the search space @@ -5677,3 +40832,29 @@ diff -ruN sdf3-140724/sdf3/sdf/analysis/buffersizing/buffer.cc sdf3_custom/sdf3/ 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 +@@ -40,6 +40,7 @@ + + #include "storage_distribution.h" + #include "../../base/timed/graph.h" ++#include + namespace SDF + { + /** +@@ -148,7 +149,13 @@ + void findCausalDependencies(SDFactor *a, bool **abstractDepGraph); + void analyzePeriodicPhase(const TBufSize *sp, bool *dep); + void analyzeDeadlock(const TBufSize *sp, bool *dep); +- ++ void findStorageDependenciesSCC(bool **abstractDepGraph, bool *dep); ++ void computeDFSStack(uint startId, int *visited, ++ bool **abstractDepGraph, ++ std::stack &dfsOrder); ++ void dfsTranspose(uint startId, int *visited, ++ bool **abstractDepGraph, ++ std::vector &sccNodes); + // Compute throughput from transition system + TDtime computeThroughput(const StatesIter cycleIter); + From 61023c8eb40d4c336bf52891ae951b1f78260f0f Mon Sep 17 00:00:00 2001 From: jkmingwen Date: Sat, 8 Jan 2022 06:31:44 +0800 Subject: [PATCH 5/5] Add instructions for running DSE algorithms --- dse_experiments.md | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 dse_experiments.md diff --git a/dse_experiments.md b/dse_experiments.md new file mode 100644 index 00000000..cb0aca9f --- /dev/null +++ b/dse_experiments.md @@ -0,0 +1,45 @@ +# Throughput-Buffering Trade-Off Analysis +K-Iter has several design space exploration (DSE) algorithms available to perform throughput-buffering trade-off analysis on SDFGs/CSDFGs. Here, we list the algorithms available, including the parameters that can be passed to them. The algorithms run on SDF3-like XML files as input files. + +## Optimal methods +### K-periodic-driven DSE (KDSE) +Perform throughput-buffering DSE using K-periodic scheduling for throughput computation and critical cycles as a search heuristic for buffer size allocations. By default, the ```ThroughputBufferingDSE``` algorithm runs the DSE algorithm using K-periodic scheduling and critical cycles, without logging: + +`./Release/bin/kiter -f -a ThroughputBufferingDSE` + +In order to log the data (search path and Pareto points), specify a log directory using the ```LOGDIR``` parameter: + +`./Release/bin/kiter -f -a ThroughputBufferingDSE -p LOGDIR=./logs/` + +### ASAP scheduling driven DSE (SDF3) +[SDF3](https://www.es.ele.tue.nl/sdf3/) has a throughput-buffering DSE algorithm using ASAP scheduling for throughput computation and storage dependencies as a heuristic for determining buffer size allocations. SDF3 can be installed within K-Iter. We added logging capabilities to SDF3, amongst other changes, that will be listed in the following sections. Note that `patch` is required to run `install_sdf3.sh`, so install that with your package manager of choice before running the script. In order to install and compile SDF3, run the following from the home directory of K-Iter: + +1. If the subdirectory doesn't already exist: `mkdir ./tools/sdf3` +2. `./tools/install_sdf3.sh ./tools/sdf3/` + +Now that SDF3 has been installed, their throughput-buffering DSE algorithm can be run using the following command: + +`SDF3LOGDIR=./logs/ USE_SCC=false COARSE=false ./tools/sdf3/sdf3_custom/sdf3/build/release/Linux/bin/{sdf3analysis-sdf|sdf3analysis-csdf} --graph --algo buffersize` + +Note that `SDF3LOGDIR` sets the log directory path, so set it accordingly and make sure that the log directory is made before running the DSE. Furthermore, either `sdf3analysis-sdf` or `sdf3analysis-csdf` will have to be used depending on whether the input file is a SDF or CSDF graph. + +### Corrected storage dependency detection using strongly connected components +We identified an implementation error in SDF3's simple cycle detection algorithm which, in turn, caused a bug in their storage dependency detection algorithm. We corrected this by using strongly connected components to detect cycles in their dependency graph. This corrected version can be run by setting ```USE_SCC=true```. + +`SDF3LOGDIR=./logs/ USE_SCC=true COARSE=false ./tools/sdf3/sdf3_custom/sdf3/build/release/Linux/bin/{sdf3analysis-sdf|sdf3analysis-csdf} --graph --algo buffersize` + +## Approximate methods +### 1-periodic DSE (1DSE) +Perform throughput-buffering DSE using 1-periodic scheduling and dichotomous search for buffer size allocations: + +`./Release/bin/kiter -f -a PeriodicDSE -p LOGDIR=./logs/` + +### Coarse K-periodic-driven DSE (KDSE-C) +KDSE-C multiplies the step size of the KDSE algorithm by a 2 to increase the coarseness of the DSE: + +`./Release/bin/kiter -f -a ThroughputBufferingDSE -p LOGDIR=./logs/ -p COARSE=2` + +### Coarse K-periodic-driven DSE (SDF3-C) +SDF3-C multiplies the step size of the SDF3 algorithm by a 2 to increase the coarseness of the DSE: + +`SDF3LOGDIR=./logs/ USE_SCC=false COARSE=true ./tools/sdf3/sdf3_custom/sdf3/build/release/Linux/bin/{sdf3analysis-sdf|sdf3analysis-csdf} --graph --algo buffersize`