Fixed transposition in plotting.

This commit is contained in:
Ernie Pasveer
2026-07-13 19:02:58 -05:00
parent da87062711
commit 7e88931a6d
6 changed files with 63 additions and 8 deletions
+1
View File
@@ -0,0 +1 @@
hello482
+11
View File
@@ -0,0 +1,11 @@
.PHONY: all
all: hello482
hello482: hello482.cpp
g++ -g -o hello482 hello482.cpp
.PHONY: clean
clean:
rm -f hello482 hello482.o
+1
View File
@@ -0,0 +1 @@
break -source /nas/erniep/Development/seer/tests/hello482/hello482.cpp -line 15
+17
View File
@@ -0,0 +1,17 @@
#include <string>
#include <iostream>
int main () {
double a[100];
double b[100];
for (int i=0; i<100; i++) {
a[i] = i;
b[i] = i*i;
}
return 0;
}
+25
View File
@@ -0,0 +1,25 @@
{
"seerproject": {
"executable": "hello482",
"postgdbcommands": [
""
],
"pregdbcommands": [
""
],
"startmode": {
"arguments": "",
"breakatfirstinstruction": false,
"breakinfunction": false,
"breakinfunctionname": "",
"breakinmain": true,
"breakpointsfile": "/nas/erniep/Development/seer/tests/hello482/breakpoints.seer",
"nobreak": false,
"nonstopmode": false,
"randomizestartaddress": false,
"showassemblytabmode": "auto"
},
"symbolfile": "",
"workingdirectory": ""
}
}