Have you tried using the conflict refiner? It claims that the following system of constraints is infeasible in MyMPS_infeasible:
Subject To
R3: C3 - 3000 C12 <= 0
R24: 2.6822091e-9 C1 + C9 <= 0
R32: C3 - C4 - C5 + C6 = 3560.340332
R33: 0.9990000129 C1 + 0.8999999762 C5 - 1.098901153 C6 - C7 = 0
\Sum of equality rows in the conflict:
\ sum_eq: 0.9990000129 C1 + C3 - C4 - 0.1000000238 C5 - 0.0989011529999999 C6
\ - C7 = 3560.340332
Bounds
C1 Free
C3 Free
C6 Free
0 <= C12 <= 1
All other variables are >= 0.
Binaries
C12
When I use the solution for MyMPS_feasible as MIP start for MyMPS_infeasible and refine the resulting conflict then I get this as minimal conflict:
Subject To
R2: - C1 + 10 C2 <= 0
R24: 2.6822091e-9 C1 + C9 <= 0
R30: - 0.150000006 C1 + C11 <= 0
Bounds
C1 Free
0 <= C2 <= 1
-Inf <= C11 <= 1000000
All other variables are >= 0.
Binaries
C2
I did not check anything in detail but mixing coefficients like 1e-9 with coefficients like 8000 is a bad idea in any case. This is really asking for numerical problems.
#CPLEXOptimizers#DecisionOptimization