no message

This commit is contained in:
2024-10-07 14:22:52 +03:00
parent 6b1576461d
commit 61fc37b574
173 changed files with 960 additions and 1526 deletions

View File

@@ -1,8 +1,8 @@
package Visual_DVM_2021.Passes.All;
import Common.Utils.CommonUtils;
import Common_old.Current;
import Common_old.UI.UI;
import Common.Utils.Index;
import Common_old.Utils.Utils;
import ProjectData.Files.DBProjectFile;
import ProjectData.SapforData.Loops.Loop;
import Visual_DVM_2021.Passes.SapforAnalysis;
@@ -41,7 +41,7 @@ public class SPF_GetGraphLoops extends SapforAnalysis {
Vector<String> done_programs = new Vector<>();
String[] splitedPackedGraph = packed.split("\\|");
for (int i = 0; i < splitedPackedGraph.length; i += 2) {
String name_ = Utils.toW(splitedPackedGraph[i]);
String name_ = CommonUtils.toW(splitedPackedGraph[i]);
String[] packedLoopInfo = splitedPackedGraph[i + 1].split("#");
Index idx = new Index();
int nests_ = Integer.parseInt(packedLoopInfo[idx.Inc()]);