Subversion Repositories wimsdev

Rev

Rev 13121 | Rev 17747 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 13121 Rev 13325
Line 200... Line 200...
200
  bool redox()const;
200
  bool redox()const;
201
  fraction  nbelectron()const;
201
  fraction  nbelectron()const;
202
  void debug(int decal = 0)const{
202
  void debug(int decal = 0)const{
203
    for (int i=0; i < decal; i++) std::cout << " ";
203
    for (int i=0; i < decal; i++) std::cout << " ";
204
    std::cout << "Membre : ( " << this;
204
    std::cout << "Membre : ( " << this;
205
    for (int j=0; j < size(); j++){
205
    for (unsigned int j=0; j < size(); j++){
206
      std::cout << j << " :\n";
206
      std::cout << j << " :\n";
207
      operator[](j)->debug(decal+2);
207
      operator[](j)->debug(decal+2);
208
    }
208
    }
209
    std::cout << "\n";
209
    std::cout << "\n";
210
  }
210
  }