Changes between Initial Version and Version 2 of Ticket #153


Ignore:
Timestamp:
2015-09-11T12:41:56+02:00 (8 years ago)
Author:
maignan
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #153

    • Property Owner changed from somebody to maignan
    • Property Status changed from new to assigned
  • Ticket #153 – Description

    initial v2  
    2121         ... 
    2222}}} 
    23 IF all coefficients of matrix A are negative (which theoretically should not happen but indeed has), the variables col and raw, which are not properly initialized, may contain any value and thus crash the program if col > n. 
     23IF all coefficients of matrix A are negative (which theoretically should not happen but indeed has), the variables col and row, which are not properly initialized, may contain any value and thus crash the program if col > n. 
    2424 
    2525Thus: 
    26 - raw and col have to be initialized (0 value). 
     26- row and col have to be initialized (0 value). 
    2727- At the end of the loops, at least one of these variables have to be checked, and the code has to be stopped if it is still null. 
    2828