import java.rmi.* ; import java.util.Vector ; /* ************************************ */ /* Une classe toute simple */ /* pour l'application cliente */ /* ************************************ */ public class ClientEx2v3 { /* ************************************ */ /* Programme principal */ /* ************************************ */ public static void main(String [] args) { int ns = 3 ; int n = 11 ; try { InterfaceEx2 esclaves[] = new InterfaceEx2[ns] ; for ( int i = 0 ; i < ns ; i++ ) esclaves[i] =(InterfaceEx2) Naming.lookup("Esclave"+(i+1)); Matrice m = new Matrice() ; m.aleatoire() ; System.out.println(m) ; Vecteur vecteurs[] = new Vecteur[n] ; for ( int i = 0 ; i < n ; i++ ) { vecteurs[i] = new Vecteur() ; vecteurs[i].aleatoire() ; } System.out.println("Vecteurs initiaux") ; for ( int i = 0 ; i < ns ; i++ ) { System.out.println(vecteurs[i]) ; } System.out.println("Apres multiplication:") ; for ( int i = 0 ; i < ns ; i++ ) { int d = i * n / ns ; int nv = ((i+1) * n / ns) - d ; System.out.println("Esclave "+i+" : "+d+" "+nv) ; Vector vec = new Vector() ; for ( int j = d ; j < d+nv ; j++ ) { vec.addElement(vecteurs[j]) ; } Vector r = esclaves[i].produitMatriceVecteurs(m,vec) ; System.out.println(r) ; } } catch (Exception e) { System.out.println(e) ; } } } /* ************************************ */