File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,10 @@ g++ -c -o sendData/libsendData.o sendData/humbug.cpp && \
44
44
ar -ru sendData/release/libsendData.a sendData/libsendData.o
45
45
endif
46
46
47
- all : libc_runtime.a libsim.a libf2c.a libsendData.a install
47
+ all : $(SIMOBJS ) $(OBJS ) libc_runtime.a libsim.a libf2c.a libsendData.a install
48
+
49
+ $(SIMOBJS ) : $(HFILES ) * .c*
50
+ $(OBJS ) : $(HFILES ) * .c*
48
51
49
52
libc_runtime.a : $(OBJS )
50
53
$(AR ) $@ $(OBJS )
Original file line number Diff line number Diff line change @@ -78,16 +78,21 @@ void read_commented_value(ifstream &f, char **str);
78
78
}
79
79
// cerr << "opened file" << endl;
80
80
read_commented_value (file,start);
81
+ if (sim_verbose) { cout << " read start = " << *start << " from init file." << endl; }
81
82
read_commented_value (file,stop);
83
+ if (sim_verbose) { cout << " read stop = " << *stop << " from init file." << endl; }
82
84
read_commented_value (file,stepSize);
83
-
85
+ if (sim_verbose) { cout << " read stepSize = " << *stepSize << " from init file. " << endl; }
84
86
if (stepSize < 0 ) { // stepSize < 0 => Automatic number of outputs
85
87
*outputSteps = -1 ;
86
88
} else {
87
89
// Calculate outputSteps from stepSize, start and stop
88
- *outputSteps = (long )(int (*stop-*start) /(*stepSize));
90
+ *outputSteps = (long )(int (*stop-*start) /(*stepSize));
89
91
}
92
+ read_commented_value (file,tolerance);
93
+ if (sim_verbose) { cout << " read tolerance = " << *tolerance << " from init file." << endl; }
90
94
read_commented_value (file,method);
95
+ if (sim_verbose) { cout << " read method = " << *method << " from init file." << endl; }
91
96
int nxchk,nychk,npchk;
92
97
int nystrchk,npstrchk;
93
98
read_commented_value (file,&nxchk);
You can’t perform that action at this time.
0 commit comments