| Update of /cvsroot/fudaa/fudaa_devel/dodico/src/org/fudaa/dodico/mathematiques
In directory sc8-pr-cvs1:/tmp/cvs-serv1304/dodico/src/org/fudaa/dodico/mathematiques
Modified Files:
	CMathComplexe.java DMatriceComplexe.java DFonctionReel.java 
	DVecteurComplexe.java 
Log Message:
suppression des variables inutiles
Index: CMathComplexe.java
===================================================================
RCS file: /cvsroot/fudaa/fudaa_devel/dodico/src/org/fudaa/dodico/mathematiques/CMathComplexe.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** CMathComplexe.java	29 Jan 2003 12:14:18 -0000	1.1
--- CMathComplexe.java	18 Mar 2003 13:09:26 -0000	1.2
***************
*** 43,47 ****
  
    public static final String enChaine(SComplexe _c)
!   { return new String(_c.re+"+"+_c.im+"i"); }
  
    public static SComplexe creeComplexe(Complex _c)
--- 43,47 ----
  
    public static final String enChaine(SComplexe _c)
!   { return _c.re+"+"+_c.im+"i"; }
  
    public static SComplexe creeComplexe(Complex _c)
Index: DMatriceComplexe.java
===================================================================
RCS file: /cvsroot/fudaa/fudaa_devel/dodico/src/org/fudaa/dodico/mathematiques/DMatriceComplexe.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** DMatriceComplexe.java	29 Jan 2003 12:14:18 -0000	1.1
--- DMatriceComplexe.java	18 Mar 2003 13:09:26 -0000	1.2
***************
*** 190,194 ****
    public SComplexe[] ligne(int _i)
    {
!     Complex el;
      int nc=nbColonnes();
      SComplexe[] res=new SComplexe[nc];
--- 190,194 ----
    public SComplexe[] ligne(int _i)
    {
! //    Complex el;
      int nc=nbColonnes();
      SComplexe[] res=new SComplexe[nc];
Index: DFonctionReel.java
===================================================================
RCS file: /cvsroot/fudaa/fudaa_devel/dodico/src/org/fudaa/dodico/mathematiques/DFonctionReel.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** DFonctionReel.java	29 Jan 2003 12:14:18 -0000	1.1
--- DFonctionReel.java	18 Mar 2003 13:09:26 -0000	1.2
***************
*** 42,46 ****
    {
      DFonctionReel c=new DFonctionReel();
!     c.formule(new String(form));
      c.variables((String[])varsStr.clone());
      return c;
--- 42,46 ----
    {
      DFonctionReel c=new DFonctionReel();
!     c.formule(form);
      c.variables((String[])varsStr.clone());
      return c;
Index: DVecteurComplexe.java
===================================================================
RCS file: /cvsroot/fudaa/fudaa_devel/dodico/src/org/fudaa/dodico/mathematiques/DVecteurComplexe.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** DVecteurComplexe.java	29 Jan 2003 12:14:18 -0000	1.1
--- DVecteurComplexe.java	18 Mar 2003 13:09:26 -0000	1.2
***************
*** 135,139 ****
    public SComplexe[] coordonnees()
    {
!     Complex el;
      int taille=v_.dimension();
      SComplexe[] res=new SComplexe[taille];
--- 135,139 ----
    public SComplexe[] coordonnees()
    {
! //    Complex el;
      int taille=v_.dimension();
      SComplexe[] res=new SComplexe[taille];
 |