Skip to content
Snippets Groups Projects
Commit 68743b93 authored by thibault.capt's avatar thibault.capt
Browse files

Final push before doc

parent 795c0b71
No related branches found
No related tags found
No related merge requests found
......@@ -269,6 +269,11 @@ public class Simplex {
* @param time le temps de l'exécution
*/
public void resultPrint(Matrix m, long time) {
if(m == null) {
System.out.println("Impossible d'écrire une matrice null...");
return;
}
int line = m.getLine() - 1;
int col = m.getCol() - 1;
System.out.println("-------------------Solution-------------------");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment