[BACK]Return to PolyCalc.java CVS log [TXT][DIR] Up to [local] / OpenXM / src / OpenMath

Diff for /OpenXM/src/OpenMath/PolyCalc.java between version 1.8 and 1.9

version 1.8, 2000/01/28 06:22:01 version 1.9, 2000/03/16 12:28:42
Line 1 
Line 1 
 /**  /**
  * $OpenXM: OpenXM/src/OpenMath/PolyCalc.java,v 1.7 1999/11/19 08:49:06 tam Exp $   * $OpenXM: OpenXM/src/OpenMath/PolyCalc.java,v 1.8 2000/01/28 06:22:01 tam Exp $
  */   */
   
 import JP.ac.kobe_u.math.tam.OpenXM.*;  import JP.ac.kobe_u.math.tam.OpenXM.*;
Line 146  class PolyCalc extends Applet implements ActionListene
Line 146  class PolyCalc extends Applet implements ActionListene
     }else if(arg.equals("grobner base")){      }else if(arg.equals("grobner base")){
       try{        try{
         debug("poly A: "+ poly1.getText());          debug("poly A: "+ poly1.getText());
         oxm.sendCMO(new CMO_STRING("[[("+ poly1.getText() +") ("+ poly2.getText() +")] (x,y)] gb"));          oxm.send(new CMO_STRING("[[("+ poly1.getText() +") ("+ poly2.getText() +")] (x,y)] gb"));
         oxm.sendSM(new SM(SM.SM_executeStringByLocalParser));          oxm.send(new SM(SM.SM_executeStringByLocalParser));
         oxm.sendSM(new SM(SM.SM_popString));          oxm.send(new SM(SM.SM_popString));
       }catch(java.io.IOException e){        }catch(java.io.IOException e){
       }catch(MathcapViolation e){        }catch(MathcapViolation e){
       }        }
Line 180  class PolyCalc extends Applet implements ActionListene
Line 180  class PolyCalc extends Applet implements ActionListene
         */          */
       oxm = new OpenXM(host,ControlPort,DataPort);        oxm = new OpenXM(host,ControlPort,DataPort);
       textarea.append("Connected.\n");        textarea.append("Connected.\n");
       oxm.sendCMO(new CMO_STRING("(cohom.sm1) run ;\n"));        oxm.send(new CMO_STRING("(cohom.sm1) run ;\n"));
       oxm.sendSM(new SM(SM.SM_executeStringByLocalParser));        oxm.send(new SM(SM.SM_executeStringByLocalParser));
   
       thread = new Thread(this);        thread = new Thread(this);
       thread.start();        thread.start();

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>