1
0
Fork 0

I wrote arrayfit and it worked.

Then I needed to modify libArray code so that other portions of the code
could use the pre-computed fit data.
Today I discovered that arrayfit was messed up.  That is now fixed.
This commit is contained in:
curt 2003-03-17 17:25:11 +00:00
parent 3b6e96a06a
commit 119d46058b

View file

@ -146,12 +146,7 @@ int main( int argc, char **argv ) {
usage( argv[0] );
}
SGPath outfile = infile.base();
cout << outfile.str() << endl;
while ( outfile.extension().length() ) {
outfile = outfile.base();
cout << outfile.str() << endl;
}
SGPath outfile = infile;
outfile.concat( ".fit.gz" );
cout << "Input file = " << infile.str() << endl;