8 lines
378 B
C
8 lines
378 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <map>
|
||
|
|
#include "../GraphLoop/graph_loops.h"
|
||
|
|
|
||
|
|
void reverseCreatedNestedLoops(const std::string &file, std::vector<LoopGraph*> &loopsInFile);
|
||
|
|
bool createNestedLoops(LoopGraph *current, const std::map<LoopGraph*, void*> &depInfoForLoopGraph,
|
||
|
|
const std::map<std::string, FuncInfo*>& mapFuncInfo, std::vector<Messages> &messages);
|