12#ifndef _CNC_INTERFACE_MATRIX_H_
13#define _CNC_INTERFACE_MATRIX_H_
32 return c1.index < c2.index ;
43class CNCSparseRowColumn {
45 CNCSparseRowColumn() {
46 coeff_ = CNCallocate<CNCCoeff>(2) ;
50 ~CNCSparseRowColumn() { CNCdeallocate<CNCCoeff>(coeff_) ; }
51 long nb_coeffs()
const {
return nb_coeffs_ ; }
52 CNCCoeff& coeff(
long ii) {
return coeff_[ii] ; }
53 const CNCCoeff& coeff(
long ii)
const {
return coeff_[ii] ; }
56 void add(
long index,
double val){
59 for(
long ii=0; ii < nb_coeffs_; ii++) {
60 if(coeff_[ii].index == index) {
61 coeff = &(coeff_[ii]) ;
73 if(nb_coeffs_ > capacity_) {
76 coeff = &(coeff_[nb_coeffs_ - 1]) ;
78 coeff->index = index ;
85 CNCCoeff* end = coeff_ + nb_coeffs_ ;
94 CNCdeallocate<CNCCoeff>(coeff_) ;
95 coeff_ = CNCallocate<CNCCoeff>(2) ;
105 void zero() { nb_coeffs_ = 0 ; }
109 long old_capacity = capacity_ ;
110 capacity_ = capacity_ * 2 ;
111 CNCreallocate<CNCCoeff>(coeff_, old_capacity, capacity_) ;
127 enum Storage {NONE, ROWS, COLUMNS, ROWS_AND_COLUMNS} ;
135 CNC_Matrix(
long m,
long n, Storage storage = ROWS) ;
149 CNC_Matrix(
long n, Storage storage,
bool symmetric_storage) ;
161 long diag_size()
const ;
166 bool rows_are_stored()
const;
168 bool columns_are_stored()
const ;
170 Storage storage()
const ;
172 bool has_symmetric_storage()
const ;
174 bool is_square()
const;
176 bool is_symmetric()
const ;
193 double diag(
long i)
const;
198 void add(
long i,
long j,
double val) ;
217 void allocate(
long m,
long n, Storage storage,
bool symmetric =
false) ;
231 bool rows_are_stored_ ;
232 bool columns_are_stored_ ;
233 bool symmetric_storage_ ;
234 bool symmetric_tag_ ;
void add(long index, double val)
CNC_Matrix(long m, long n, Storage storage=ROWS)
void add(long i, long j, double val)
void set_symmetric_tag(bool x)
CNCSparseRowColumn & row(long i)
double diag(long i) const
CNCSparseRowColumn & column(long j)