Changeset 543931 in git
- Timestamp:
- Jun 17, 2006, 1:43:35 PM (17 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- d5245dab5e822b080f9ee9d2d2decfb0e29585f9
- Parents:
- 2a94d39001fd31dc8aa5ef872819d2b2b64cb0fd
- Location:
- IntegerProgramming
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
IntegerProgramming/IP_algorithms.cc
r2a94d3 r543931 3297 3297 } 3298 3298 3299 Integer initial_solution[weighted_variables];3299 Integer *initial_solution=new Integer[weighted_variables]; 3300 3300 3301 3301 for(short k=0;k<instances;k++) … … 3313 3313 "first input \nfile, this and all following right hand vectors " 3314 3314 "will be ignored"<<endl; 3315 delete[] right_hand;3315 delete[] initial_solution; 3316 3316 return 0; 3317 3317 } … … 3352 3352 output<<setw(6)<<setprecision(2)<<elapsed<<" sec"<<endl<<endl; 3353 3353 } 3354 delete[] initial_solution; 3354 3355 } 3355 3356 3356 delete[] right_hand;3357 3357 return 1; 3358 3358 -
IntegerProgramming/LLL_lattice_to_send.cc
r2a94d3 r543931 54 54 #include <stdio.h> 55 55 #include <stdlib.h> 56 #include <string.h> 56 57 #include <ctype.h> 57 58 #include <new>
Note: See TracChangeset
for help on using the changeset viewer.