Ignore:
Timestamp:
01/29/10 09:49:13 (15 years ago)
Author:
Mathieu Morlighem
Message:

fixed Simultaneous reduction

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/Bamgx/R2.h

    r2924 r2932  
    88                          R x,y;
    99                          void Echo(){
     10                                  printf("Member of P2:\n");
    1011                                  printf("   x: %g\n",x);
    1112                                  printf("   y: %g\n",y);
     
    3536                  public:
    3637                  P2<R,RR> x,y;
     38                  void Echo(){
     39                          printf("Member of P2xP2:\n");
     40                          printf("   x.x: %g   x.y: %g\n",x.x,x.y);
     41                          printf("   y.x: %g   y.x: %g\n",y.x,y.y);
     42                  }
    3743                  P2xP2 (): x(),y()  {}
    3844                  P2xP2 (P2<R,RR> a,P2<R,RR> b): x(a),y(b) {}
Note: See TracChangeset for help on using the changeset viewer.