no message

This commit is contained in:
2025-05-07 21:44:44 +03:00
parent 1f4b736188
commit e1291446c8
4 changed files with 6 additions and 4 deletions

2
.idea/workspace.xml generated
View File

@@ -7,7 +7,9 @@
</component> </component>
<component name="ChangeListManager"> <component name="ChangeListManager">
<list default="true" id="e42177c3-2328-4b27-8a01-35779b2beb99" name="Default Changelist" comment=""> <list default="true" id="e42177c3-2328-4b27-8a01-35779b2beb99" name="Default Changelist" comment="">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/_VisualDVM/Passes/All/SPF_GetAllDeclaratedArrays.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/_VisualDVM/Passes/All/SPF_GetAllDeclaratedArrays.java" afterDir="false" /> <change beforePath="$PROJECT_DIR$/src/_VisualDVM/Passes/All/SPF_GetAllDeclaratedArrays.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/_VisualDVM/Passes/All/SPF_GetAllDeclaratedArrays.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/_VisualDVM/ProjectData/SapforData/Arrays/ProjectArray.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/_VisualDVM/ProjectData/SapforData/Arrays/ProjectArray.java" afterDir="false" />
</list> </list>
<option name="SHOW_DIALOG" value="false" /> <option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" /> <option name="HIGHLIGHT_CONFLICTS" value="true" />

View File

@@ -4,7 +4,7 @@
"ServerUserPassword": "mprit_2011", "ServerUserPassword": "mprit_2011",
"OfferRegistrationOnStart": true, "OfferRegistrationOnStart": true,
"Workspace": "E:\\Tests", "Workspace": "E:\\Tests",
"ProjectsSearchDirectory": "E:\\BUG", "ProjectsSearchDirectory": "E:\\SAPFOR\\Tests\\BT_inserted",
"DocumentsDirectory": "C:\\Users\\misha\\Documents\\_testing_system", "DocumentsDirectory": "C:\\Users\\misha\\Documents\\_testing_system",
"VisualiserPath": "C:\\Users\\misha\\Downloads", "VisualiserPath": "C:\\Users\\misha\\Downloads",
"Sapfor_FPath": "E:\\_sapfor_x64\\Components\\Sapfor_F", "Sapfor_FPath": "E:\\_sapfor_x64\\Components\\Sapfor_F",

View File

@@ -35,9 +35,6 @@ public class SPF_GetAllDeclaratedArrays extends SapforAnalysis {
System.out.println("size="+arraysJson.allArrays.size()); System.out.println("size="+arraysJson.allArrays.size());
for (ProjectArray array: arraysJson.allArrays){ for (ProjectArray array: arraysJson.allArrays){
array.Init(); array.Init();
for (ArrayDecl arrayDecl: array.declPlaces){
arrayDecl.file = Utils_.toW(arrayDecl.file);
}
target.declaratedArrays.put(array.id, array); target.declaratedArrays.put(array.id, array);
array.print(); array.print();
} }

View File

@@ -161,6 +161,9 @@ public class ProjectArray extends DBObject {
//короткое имя+ функция/модуль/комон+ размерность //короткое имя+ функция/модуль/комон+ размерность
UniqKey = shortName + locName + dimSize; UniqKey = shortName + locName + dimSize;
address = BigInteger.ONE; address = BigInteger.ONE;
for (ArrayDecl arrayDecl: declPlaces){
arrayDecl.file = Utils_.toW(arrayDecl.file);
}
} }
public static String fill_binary(int d, String binary) { public static String fill_binary(int d, String binary) {
int delta = Math.abs(binary.length() - d); int delta = Math.abs(binary.length() - d);