Skip to content

Commit

Permalink
remove unused includes
Browse files Browse the repository at this point in the history
  • Loading branch information
bbodin committed Dec 29, 2021
1 parent a1b8288 commit f11e632
Show file tree
Hide file tree
Showing 11 changed files with 0 additions and 20 deletions.
2 changes: 0 additions & 2 deletions src/libkiter/algorithms/dse/base_monotonic_optimisation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@

#include <map>
#include <vector>
#include <printers/stdout.h>
#include <commons/verbose.h>
#include <printers/SDF3Wrapper.h> // to write XML files
#include <commons/commons.h>
#include <models/Dataflow.h>
#include <models/EventGraph.h>
Expand Down
2 changes: 0 additions & 2 deletions src/libkiter/algorithms/dse/dse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@

#include <map>
#include <vector>
#include <printers/stdout.h>
#include <commons/verbose.h>
#include <printers/SDF3Wrapper.h> // to write XML files
#include <commons/commons.h>
#include <models/Dataflow.h>
#include <models/EventGraph.h>
Expand Down
2 changes: 0 additions & 2 deletions src/libkiter/algorithms/dse/kperiodic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@

#include <map>
#include <vector>
#include <printers/stdout.h>
#include <commons/verbose.h>
#include <printers/SDF3Wrapper.h> // to write XML files
#include <commons/commons.h>
#include <models/Dataflow.h>
#include <models/EventGraph.h>
Expand Down
2 changes: 0 additions & 2 deletions src/libkiter/algorithms/dse/monotonic_optimisation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@

#include <map>
#include <vector>
#include <printers/stdout.h>
#include <commons/verbose.h>
#include <printers/SDF3Wrapper.h> // to write XML files
#include <commons/commons.h>
#include <models/Dataflow.h>
#include <models/EventGraph.h>
Expand Down
1 change: 0 additions & 1 deletion src/libkiter/algorithms/scc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
#include <map>
#include <vector>
#include <stack>
#include <printers/stdout.h>
#include <commons/verbose.h>
#include <commons/commons.h>
#include <models/Dataflow.h>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

#include <algorithms/throughput/kperiodic.h>
#include <models/EventGraph.h>
#include <printers/SDF3Wrapper.h>


const periodicity_vector_t algorithms::scheduling::generateNPeriodicVector (const models::Dataflow* dataflow) {
Expand Down Expand Up @@ -101,11 +100,6 @@ models::Scheduling algorithms::scheduling::CSDF_1PeriodicScheduling (const model

models::Scheduling algorithms::scheduling::CSDF_KPeriodicScheduling (const models::Dataflow* const dataflow) {

if (VERBOSE_IS_DEBUG()) {
VERBOSE_DEBUG("Save SDF3 XML file.");
static int count = 0;
printers::writeSDF3File( "CSDF_KPeriodicScheduling_" + std::to_string(count++) + ".xml", dataflow);
}

VERBOSE_ASSERT((dataflow->has_repetition_vector()),"inconsistent graph or repetition vector not computed");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
#include <models/Dataflow.h>
#include <models/EventGraph.h>
#include <map>
#include <printers/stdout.h>
#include <algorithms/throughput/csdf_strictly_periodic.h>


Expand Down
1 change: 0 additions & 1 deletion src/libkiter/algorithms/throughput/kperiodic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
#include <chrono>
#include <map>
#include <vector>
#include <printers/stdout.h>
#include <commons/verbose.h>
#include <models/Dataflow.h>
#include <models/EventGraph.h>
Expand Down
1 change: 0 additions & 1 deletion src/libkiter/algorithms/throughput/so4_noc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
#include "actor.h"
#include "state.h"
#include "so4_noc.h"
#include <printers/stdout.h>
#include "../../models/Scheduling.h"
#include "../scc.h"
#include "../buffersizing/periodic_fixed.h"
Expand Down
1 change: 0 additions & 1 deletion src/libkiter/algorithms/throughput/symbolic_execution.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
#include <algorithm>
#include <map>
#include <vector>
#include <printers/stdout.h>
#include <commons/verbose.h>
#include <commons/commons.h>
#include <models/Dataflow.h>
Expand Down
1 change: 0 additions & 1 deletion src/libkiter/generators/LTEGeneator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

#include "LTEGenerator.h"
#include <models/Dataflow.h>
#include <printers/SDF3Wrapper.h>

models::Dataflow* generators::generate_lte_sdf(parameters_list_t param_list) {

Expand Down

0 comments on commit f11e632

Please sign in to comment.