I’m working on an assignment for my data structures class where we have to finish implementing a stack and node class from the professor’s header files. After writing the cpp’s for these classes, tried to declare an instance of the stack class in the main.cpp, but doing so causes VS to throw a linker error for “scalar deleting destructor”
Posted on March 31, 2009, 2:30 am, by kishore, under
Software.
Hello, I have a very strange issue with a program I’m trying to debug. First of all, the program is a monte carlo simulation, which means that it does exactly the same process over and over again, involving random numbers, with different random seeds. From a purely algorithmic standpoint, if the code is correct than the simulation should always run fine, and if its wrong then it should fail on the very first simulation.