View Single Post
Old 12-15-2003, 09:29 AM   #7 (permalink)
dimbulb
Riiiiight........
 
Thanks guys. I tried returning values at the end of main, but it still doesnt help.

Even though I'm pretty new at this, I've been careful to clear delete objects my pointers are pointing to before i reassign or delete the pointers.

Here's a bit more information.

the size of my vectors and arrays are mostly equal to a parameter i enter in, "totalPeriods". Now, the program works fine up to totalPeriods=20. then the funny termination error creeps in when i increase it beyond that.

I read in command line arguments to run my program, and i check that the arguments are correct. (well.. they should be, since the program runs and writes the output to a text file and all. )

I don't think anyone wants to wade through my 1000 lines of code right? Any volunteers are most welcome though...
dimbulb is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73