Starta på 12
This commit is contained in:
parent
46bf7cae66
commit
c4dff16045
18
lab_2/12/Makefile
Normal file
18
lab_2/12/Makefile
Normal file
@ -0,0 +1,18 @@
|
||||
binary = memleak
|
||||
folder = memleak
|
||||
objects = $(patsubst %.cpp,%.o,$(wildcard *.cpp))
|
||||
|
||||
run: $(binary)
|
||||
./$(binary) 7 100000000
|
||||
|
||||
$(binary): $(objects)
|
||||
g++ -o $@ $^
|
||||
|
||||
clean:
|
||||
rm -f *.o
|
||||
|
||||
clear: clean
|
||||
rm -f *.zip $(binary)
|
||||
|
||||
zip: clean
|
||||
zip $(folder) Makefile *.cpp *.h
|
BIN
lab_2/12/chain-random-walk.o
Normal file
BIN
lab_2/12/chain-random-walk.o
Normal file
Binary file not shown.
@ -45,7 +45,11 @@ int main(int argc, char** argv)
|
||||
/* here we are calling the random walk step;
|
||||
* this returns a new configuration (float array) on the heap
|
||||
*/
|
||||
|
||||
// Simple fix to memleak:
|
||||
float* old_configuration = present_configuration;
|
||||
present_configuration = crw::step(size, present_configuration);
|
||||
delete old_configuration;
|
||||
float present_elongation = crw::elongation(size, present_configuration);
|
||||
|
||||
if(present_elongation > extreme_elongation)
|
||||
|
Loading…
Reference in New Issue
Block a user