mikusp / knapsack

0 stars 0 forks source link

Current progress and TODOs #2

Open mikusp opened 11 years ago

mikusp commented 11 years ago

Currently there are: at least one strategy of each type, a WIP step function in a main algorithm and stubbed main for testing.

Next step should be debugging what we've got so far so we are 99% sure it's correct. We can make GUI in parallel since it won't interfere with debugging and we have some initial functionality to test. GUI have to plot a graph - for now in a single thread, we'll see if it's worth making calculations in a different thread.

After GUI is up and running, other strategies have to be implemented.

mikusp commented 11 years ago

Next TODO: generating list of random items, saving to and from file.

rampler commented 11 years ago

and plot generating

rampler commented 11 years ago

Loading and saving to file done - in future maybe better parser - now it's one variable in one line.

rampler commented 11 years ago

DONE: new thread to algorithm steps, actons on buttons(start, pause, resume, next step) , printing best knapsack in table and max,mean,min fitness. TODO: plots, another strategies and stop condition