# CPLEX evaluate solution quality (get basis condition number kappa value)

**URL:** https://discourse.julialang.org/t/cplex-evaluate-solution-quality-get-basis-condition-number-kappa-value/32128
**Category:** General Usage
**Created:** [December 11, 2019, 2:23am UTC](https://discourse.julialang.org/t/cplex-evaluate-solution-quality-get-basis-condition-number-kappa-value/32128 "2019-12-11T02:23:47Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Bastian\_Moya](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/bastian_moya/32/9516_2.png) [@Bastian\_Moya](https://discourse.julialang.org/u/Bastian_Moya)
#### Post date: [December 11, 2019, 2:23am UTC](https://discourse.julialang.org/t/cplex-evaluate-solution-quality-get-basis-condition-number-kappa-value/32128/1 "2019-12-11T02:23:47Z")

</div>

There is a way to evaluate the solution quality in CPLEX which is getting a kappa value. I have been trying getting this with CPX\_PARAM\_MIPKAPPASTATS command with the following line:

m = Model(with\_optimizer(CPLEX.Optimizer,CPX\_PARAM\_MIPKAPPASTATS=2))

When I solved the problem m I cannot get anything new with that command.

There are others command to get the kappa value but I cannot reach the value with any of them.

The kappa parameters are defined in the next script:  
[https://github.com/JuliaOpt/CPLEX.jl/blob/master/src/full\_defines\_1280.jl](https://github.com/JuliaOpt/CPLEX.jl/blob/master/src/full_defines_1280.jl)

There is no example of how to call them.

Does someone know how to evaluate solution quality?
