Blame view

src/noyau/Soustraction.java 419 Bytes
d8507aee   [mandjemb]   Fichiers
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  package noyau;
  
  public class Soustraction extends OperationBinaire{
  	
  	Soustraction(Case g,Case d){
  		gauche=g;
  		droite=d;
  	}
  	
  	
  	
  	public double eval() {
  		
  		if (!creerCycle(gauche) && !creerCycle(droite))
  			return gauche.getValeur() - droite.getValeur();
  	}
  	
  	
  	
  	
  	public String toString(){
  		
  		return gauche.getId() +" - " + droite.getId() ;
  	}
  	
  	
  	public String getFormuleDeveloppe(){
  		
  		return "";
  	}
  
  }