diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml
new file mode 100644
index 0000000000000000000000000000000000000000..b6f40910408251005598e09a9a0f1dbfe091b176
--- /dev/null
+++ b/.idea/inspectionProfiles/Project_Default.xml
@@ -0,0 +1,10 @@
+<component name="InspectionProjectProfileManager">
+  <profile version="1.0">
+    <option name="myName" value="Project Default" />
+    <inspection_tool class="DuplicatedCode" enabled="true" level="WEAK WARNING" enabled_by_default="true">
+      <Languages>
+        <language minSize="56" name="Java" />
+      </Languages>
+    </inspection_tool>
+  </profile>
+</component>
\ No newline at end of file
diff --git a/src/Main.java b/src/Main.java
index d638b906cb31c5c5cbec5079e9c4d8af37846005..b6198d3efd625721593bd6a579b1e3d9e0ba9962 100644
--- a/src/Main.java
+++ b/src/Main.java
@@ -72,7 +72,7 @@ public class Main {
             eq.printEq(line);
 
             // Tableau initiale
-            Simplex spx = new Simplex(5, 6);
+            Simplex spx = new Simplex(4, 6);
             spx.createMatEcart(eq);
 
             // true = phase 1 | false = phase 2
diff --git a/src/input.txt b/src/input.txt
index 4c90baaac063aca87de55daa708b9b47ee004413..0bb445b34ba962d8a539fbc46738355fc040f3f5 100644
--- a/src/input.txt
+++ b/src/input.txt
@@ -1,5 +1,4 @@
 max;8;9;
 2;5;<=;12;
 50;5;<=;150;
-5;50;<=;100;
--1;-1000;<=;-1;
\ No newline at end of file
+5;50;<=;100;
\ No newline at end of file