2023-09-14 19:43:13 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <map>
|
2025-06-04 13:08:38 +03:00
|
|
|
#include "graph_loops.h"
|
2023-09-14 19:43:13 +03:00
|
|
|
|
|
|
|
|
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);
|