Last active
May 1, 2025 13:27
-
-
Save dpo/64f3a7e43bd72bec46269807816208d8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# stdlib dependencies | |
using Logging | |
# external dependencies | |
using Accessors | |
# our own dependencies | |
using GALAHAD | |
using NLPModels | |
using SolverCore | |
export TRB_STATUS | |
export TRBSolver | |
export reset!, solve!, trb | |
@enum TRB_IMPORT_STATUS begin | |
TRB_IMPORT_SUCCESS = 1 | |
TRB_IMPORT_ALLOC_ERROR = -1 | |
TRB_IMPORT_DEALLOC_ERROR = -2 | |
TRB_IMPORT_DIMENSION_ERROR = 3 | |
end | |
trb_import_error(status::TRB_IMPORT_STATUS) = status != TRB_IMPORT_SUCCESS | |
trb_import_error(status::Integer) = trb_import_error(TRB_IMPORT_STATUS(status)) | |
@enum TRB_STATUS begin | |
TRB_SUCCESS = 0 | |
TRB_ALLOC_ERROR = -1 | |
TRB_DEALLOC_ERROR = -2 | |
TRB_DIMENSION_ERROR = -3 | |
TRB_OBJECTIVE_UNBOUNDED = -7 | |
TRB_SYMBOLIC_ANALYSIS_FAILED = -9 | |
TRB_FACTORIZATION_FAILED = -10 | |
TRB_SYSTEM_SOLVE_FAILED = -11 | |
TRB_ILL_CONDITIONED = -16 | |
TRB_MAXIMUM_ITER = -18 | |
TRB_MAXIMUM_TIME = -19 | |
TRB_USER_TERMINATION = -82 | |
TRB_EVALUATE_OBJECTIVE = 2 | |
TRB_EVALUATE_GRADIENT = 3 | |
TRB_EVALUATE_HESSIAN = 4 | |
TRB_EVALUATE_HPROD_UPDATE = 5 # perform u = u + Hv | |
TRB_APPLY_PRECONDITIONER = 6 | |
TRB_EVALUATE_SPARSE_HPROD = 7 | |
end | |
trb_error(status::TRB_STATUS) = status < TRB_SUCCESS | |
trb_error(status::Integer) = trb_error(TRB_STATUS(status)) | |
function get_status(trb_status::TRB_STATUS) | |
if trb_status == TRB_SUCCESS | |
return :first_order | |
elseif trb_status == TRB_OBJECTIVE_UNBOUNDED | |
return :unbounded | |
elseif trb_status == TRB_MAXIMUM_ITER | |
return :max_iter | |
elseif trb_status == TRB_MAXIMUM_TIME | |
return :max_time | |
elseif trb_status == TRB_USER_TERMINATION | |
return :user | |
elseif trb_status > TRB_SUCCESS # still performing iterations | |
return :unknown | |
else | |
return :exception | |
end | |
end | |
""" | |
TRBSolver(model) | |
A structure that contains all required storage to run solver TRB. | |
A TRBSolver instance can be used to perform efficient re-solves of a problem (e.g., with a different initial guess or different parameter). | |
### Arguments | |
- `model::AbstractNLPModel`: an `NLPModel` representing an unconstrained or bound-constrained problem. | |
""" | |
mutable struct TRBSolver{M,T,S,Fobj,Fgrad,Fhess,Vi} <: AbstractOptimizationSolver where { | |
M<:AbstractNLPModel, | |
T, | |
S, | |
Fobj, | |
Fgrad, | |
Fhess, | |
Vi<:AbstractVector, | |
} | |
model::M | |
obj_local::Fobj | |
grad_local::Fgrad | |
hess_local::Fhess | |
f::Ref{T} | |
x::S | |
gx::S | |
hrows::Vi | |
hcols::Vi | |
hvals::S | |
u::S | |
v::S | |
data::Ref{Ptr{Cvoid}} | |
control::Ref{trb_control_type{T,Int}} | |
status::Ref{Int} | |
inform::Ref{trb_inform_type{T,Int}} | |
end | |
function TRBSolver(model::AbstractNLPModel{T,S}) where {T,S} | |
bound_constrained(model) || error("trb does not handle constraints other than bounds") | |
obj_local = (x, f) -> (f[] = obj(model, x); return 0) | |
grad_local = (x, g) -> (grad!(model, x, g); return 0) | |
hess_local = (x, hvals) -> (hess_coord!(model, x, hvals); return 0) | |
f = Ref{T}(zero(T)) | |
x = similar(model.meta.x0) | |
gx = similar(x) | |
nnzh = get_nnzh(model) | |
hrows, hcols = hess_structure(model) | |
hvals = similar(x, nnzh) | |
u = similar(x) | |
v = similar(x) | |
data = Ref{Ptr{Cvoid}}() | |
control = Ref{trb_control_type{T,Int}}() | |
status = Ref{Int}() | |
inform = Ref{trb_inform_type{T,Int}}() | |
trb_initialize(T, Int, data, control, status) | |
solver = TRBSolver{ | |
typeof(model), | |
T, | |
S, | |
typeof(obj_local), | |
typeof(grad_local), | |
typeof(hess_local), | |
typeof(hrows), | |
}( | |
model, | |
obj_local, | |
grad_local, | |
hess_local, | |
f, | |
x, | |
gx, | |
hrows, | |
hcols, | |
hvals, | |
u, | |
v, | |
data, | |
control, | |
status, | |
inform, | |
) | |
cleanup(s) = trb_terminate(T, Int, s.data, s.control, s.inform) | |
finalizer(cleanup, solver) | |
solver | |
end | |
function SolverCore.reset!( | |
solver::TRBSolver{M,T,S,Fobj,Fgrad,Fhess,Vi}, | |
) where {M,T,S,Fobj,Fgrad,Fhess,Vi} | |
reset!(solver.model) | |
trb_initialize(T, Int, solver.data, solver.control, solver.status) | |
end | |
""" | |
trb(model; kwargs...) | |
Solve the unconstrained or bound-constrained problem `model` with GALAHAD solver TRB. | |
### Arguments | |
- `model::AbstractNLPModel`: an `NLPModel` representing an unconstrained or bound-constrained problem. | |
### Keyword arguments | |
- `callback`: a function called at each iteration allowing the user to access intermediate solver information. See below for more details. | |
- `x0::AbstractVector`: an initial guess of the same type as `model.meta.x0`. Default: `model.meta.x0`. | |
- `prec`: a function or callable of `(x, u, v)` that overwrites `u` with a preconditioner applied to `v` at the current iterate `x`. | |
`prec(x, u, v)` should return `0` on success. Default: u = v, i.e., no preconditioner. | |
- `print_level::Int`: verbosity level (see the TRB documentation). Default: 1. | |
- `maxit::Int`: maximum number of iterations. Default: max(50, n), where n is the number of variables. | |
### Callback | |
If re-solves are of interest, it is more efficient to first instantiate a solver object and call `solve!()` repeatedly: | |
solver = TRBSolver(model) | |
stats = GenericExecutionStats(model) | |
solve!(solver, stats; kwargs...) | |
where the `kwargs...` are the same as above. | |
""" | |
function trb(model::AbstractNLPModel; kwargs...) | |
solver = TRBSolver(model) | |
stats = GenericExecutionStats(model) | |
solve!(solver, stats; kwargs...) | |
end | |
function SolverCore.solve!( | |
solver::TRBSolver{M,T,S,Fobj,Fgrad,Fhess,Vi}, | |
stats::GenericExecutionStats; | |
callback = (args...) -> nothing, | |
x0::AbstractVector{Float64} = solver.model.meta.x0, | |
prec::Fprec = (x, u, v) -> (u .= v; return 0), | |
print_level::Int = 1, | |
maxit::Int = max(50, solver.model.meta.nvar), | |
) where {M,T,S,Fobj,Fgrad,Fhess,Vi,Fprec} | |
start_time = time() | |
set_status!(stats, :unknown) | |
model = solver.model | |
n = get_nvar(model) | |
length(x0) == n || error("initial guess has inconsistent size") | |
x = solver.x .= x0 | |
@reset solver.control[].f_indexing = true # Fortran 1-based indexing | |
@reset solver.control[].print_level = print_level | |
@reset solver.control[].maxit = maxit | |
@reset solver.control[].error = 6 | |
@reset solver.control[].out = 6 | |
nnzh = get_nnzh(model) | |
trb_import( | |
T, | |
Int, | |
solver.control, | |
solver.data, | |
solver.status, | |
n, | |
model.meta.lvar, | |
model.meta.uvar, | |
"coordinate", | |
nnzh, | |
solver.hrows, | |
solver.hcols, | |
C_NULL, | |
) | |
trb_import_status = TRB_IMPORT_STATUS(solver.status[]) | |
if trb_import_error(trb_import_status) | |
@error "trb_import exits with status = $trb_import_status" | |
set_solver_specific!(stats, :trb_import_status, trb_import_status) | |
set_time!(stats, time() - start_time) | |
set_solution!(stats, x) | |
return stats | |
end | |
inform_status = Ref{Int}() | |
eval_status = Ref{Int}() | |
local trb_status::TRB_STATUS | |
set_iter!(stats, 0) | |
callback(model, solver, stats) | |
finished = stats.status != :unknown | |
while !finished | |
trb_solve_reverse_with_mat( | |
T, | |
Int, | |
solver.data, | |
solver.status, | |
eval_status, | |
n, | |
x, | |
solver.f[], | |
solver.gx, | |
nnzh, | |
solver.hvals, | |
solver.u, | |
solver.v, | |
) | |
trb_status = TRB_STATUS(solver.status[]) | |
if trb_status == TRB_SUCCESS # successful termination | |
finished = true | |
elseif trb_error(trb_status) | |
@error "trb_solve_reverse_with_mat returns with status = $trb_status" | |
finished = true | |
elseif trb_status == TRB_EVALUATE_OBJECTIVE | |
eval_status[] = solver.obj_local(x, solver.f) | |
elseif trb_status == TRB_EVALUATE_GRADIENT | |
eval_status[] = solver.grad_local(x, solver.gx) | |
elseif trb_status == TRB_EVALUATE_HESSIAN | |
eval_status[] = solver.hess_local(x, solver.hvals) | |
elseif trb_status == TRB_APPLY_PRECONDITIONER | |
eval_status[] = prec(x, solver.u, solver.v) | |
else | |
@error "the value $trb_status of status should not occur" | |
finished = true | |
end | |
trb_information(T, Int, solver.data, solver.inform, inform_status) | |
set_time!(stats, time() - start_time) | |
set_solution!(stats, x) | |
set_objective!(stats, solver.f[]) | |
norm_pg = solver.inform[].norm_pg::T | |
set_dual_residual!(stats, norm_pg) | |
iter = solver.inform[].iter::Int | |
set_iter!(stats, iter) | |
set_status!(stats, get_status(trb_status)) | |
set_solver_specific!(stats, :trb_status, trb_status) | |
callback(model, solver, stats) | |
finished |= stats.status != :unknown | |
end | |
trb_information(T, Int, solver.data, solver.inform, inform_status) | |
set_time!(stats, time() - start_time) | |
set_solution!(stats, x) | |
set_objective!(stats, solver.f[]) | |
set_primal_residual!(stats, zero(T)) | |
norm_pg = solver.inform[].norm_pg::T | |
set_dual_residual!(stats, norm_pg) | |
if has_bounds(model) | |
stats.multipliers_L .= max.(0, solver.gx) | |
stats.multipliers_U .= -min.(0, solver.gx) | |
stats.bounds_multipliers_reliable = true | |
end | |
iter = solver.inform[].iter::Int | |
set_iter!(stats, iter) | |
stats.status == :user || set_status!(stats, get_status(trb_status)) | |
set_solver_specific!(stats, :trb_status, trb_status) | |
stats | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- # stdlib dependencies | |
- using Logging | |
- | |
- # external dependencies | |
- using Accessors | |
- | |
- # our own dependencies | |
- using GALAHAD | |
- using NLPModels | |
- using SolverCore | |
- | |
- export TRB_STATUS | |
- export TRBSolver | |
- export reset!, solve!, trb | |
- | |
- @enum TRB_IMPORT_STATUS begin | |
- TRB_IMPORT_SUCCESS = 1 | |
- TRB_IMPORT_ALLOC_ERROR = -1 | |
- TRB_IMPORT_DEALLOC_ERROR = -2 | |
- TRB_IMPORT_DIMENSION_ERROR = 3 | |
- end | |
- | |
- trb_import_error(status::TRB_IMPORT_STATUS) = status != TRB_IMPORT_SUCCESS | |
- trb_import_error(status::Integer) = trb_import_error(TRB_IMPORT_STATUS(status)) | |
- | |
- @enum TRB_STATUS begin | |
- TRB_SUCCESS = 0 | |
- TRB_ALLOC_ERROR = -1 | |
- TRB_DEALLOC_ERROR = -2 | |
- TRB_DIMENSION_ERROR = -3 | |
- TRB_OBJECTIVE_UNBOUNDED = -7 | |
- TRB_SYMBOLIC_ANALYSIS_FAILED = -9 | |
- TRB_FACTORIZATION_FAILED = -10 | |
- TRB_SYSTEM_SOLVE_FAILED = -11 | |
- TRB_ILL_CONDITIONED = -16 | |
- TRB_MAXIMUM_ITER = -18 | |
- TRB_MAXIMUM_TIME = -19 | |
- TRB_USER_TERMINATION = -82 | |
- TRB_EVALUATE_OBJECTIVE = 2 | |
- TRB_EVALUATE_GRADIENT = 3 | |
- TRB_EVALUATE_HESSIAN = 4 | |
- TRB_EVALUATE_HPROD_UPDATE = 5 # perform u = u + Hv | |
- TRB_APPLY_PRECONDITIONER = 6 | |
- TRB_EVALUATE_SPARSE_HPROD = 7 | |
- end | |
- | |
- trb_error(status::TRB_STATUS) = status < TRB_SUCCESS | |
- trb_error(status::Integer) = trb_error(TRB_STATUS(status)) | |
- | |
- function get_status(trb_status::TRB_STATUS) | |
- if trb_status == TRB_SUCCESS | |
- return :first_order | |
- elseif trb_status == TRB_OBJECTIVE_UNBOUNDED | |
- return :unbounded | |
- elseif trb_status == TRB_MAXIMUM_ITER | |
- return :max_iter | |
- elseif trb_status == TRB_MAXIMUM_TIME | |
- return :max_time | |
- elseif trb_status == TRB_USER_TERMINATION | |
- return :user | |
- elseif trb_status > TRB_SUCCESS # still performing iterations | |
- return :unknown | |
- else | |
- return :exception | |
- end | |
- end | |
- | |
- """ | |
- TRBSolver(model) | |
- | |
- A structure that contains all required storage to run solver TRB. | |
- A TRBSolver instance can be used to perform efficient re-solves of a problem (e.g., with a different initial guess or different parameter). | |
- | |
- ### Arguments | |
- | |
- - `model::AbstractNLPModel`: an `NLPModel` representing an unconstrained or bound-constrained problem. | |
- """ | |
- mutable struct TRBSolver{M,T,S,Fobj,Fgrad,Fhess,Vi} <: AbstractOptimizationSolver where { | |
- M<:AbstractNLPModel, | |
- T, | |
- S, | |
- Fobj, | |
- Fgrad, | |
- Fhess, | |
- Vi<:AbstractVector, | |
- } | |
- model::M | |
- obj_local::Fobj | |
- grad_local::Fgrad | |
- hess_local::Fhess | |
- f::Ref{T} | |
- x::S | |
- gx::S | |
- hrows::Vi | |
- hcols::Vi | |
- hvals::S | |
- u::S | |
- v::S | |
- data::Ref{Ptr{Cvoid}} | |
- control::Ref{trb_control_type{T,Int}} | |
- status::Ref{Int} | |
- inform::Ref{trb_inform_type{T,Int}} | |
- end | |
- | |
- function TRBSolver(model::AbstractNLPModel{T,S}) where {T,S} | |
0 bound_constrained(model) || error("trb does not handle constraints other than bounds") | |
0 obj_local = (x, f) -> (f[] = obj(model, x); return 0) | |
0 grad_local = (x, g) -> (grad!(model, x, g); return 0) | |
0 hess_local = (x, hvals) -> (hess_coord!(model, x, hvals); return 0) | |
0 f = Ref{T}(zero(T)) | |
0 x = similar(model.meta.x0) | |
0 gx = similar(x) | |
0 nnzh = get_nnzh(model) | |
0 hrows, hcols = hess_structure(model) | |
0 hvals = similar(x, nnzh) | |
0 u = similar(x) | |
0 v = similar(x) | |
0 data = Ref{Ptr{Cvoid}}() | |
0 control = Ref{trb_control_type{T,Int}}() | |
0 status = Ref{Int}() | |
0 inform = Ref{trb_inform_type{T,Int}}() | |
0 trb_initialize(T, Int, data, control, status) | |
0 solver = TRBSolver{ | |
- typeof(model), | |
- T, | |
- S, | |
- typeof(obj_local), | |
- typeof(grad_local), | |
- typeof(hess_local), | |
- typeof(hrows), | |
- }( | |
- model, | |
- obj_local, | |
- grad_local, | |
- hess_local, | |
- f, | |
- x, | |
- gx, | |
- hrows, | |
- hcols, | |
- hvals, | |
- u, | |
- v, | |
- data, | |
- control, | |
- status, | |
- inform, | |
- ) | |
- cleanup(s) = trb_terminate(T, Int, s.data, s.control, s.inform) | |
0 finalizer(cleanup, solver) | |
- solver | |
- end | |
- | |
- function SolverCore.reset!( | |
- solver::TRBSolver{M,T,S,Fobj,Fgrad,Fhess,Vi}, | |
- ) where {M,T,S,Fobj,Fgrad,Fhess,Vi} | |
- reset!(solver.model) | |
- trb_initialize(T, Int, solver.data, solver.control, solver.status) | |
- end | |
- | |
- """ | |
- trb(model; kwargs...) | |
- | |
- Solve the unconstrained or bound-constrained problem `model` with GALAHAD solver TRB. | |
- | |
- ### Arguments | |
- | |
- - `model::AbstractNLPModel`: an `NLPModel` representing an unconstrained or bound-constrained problem. | |
- | |
- ### Keyword arguments | |
- | |
- - `callback`: a function called at each iteration allowing the user to access intermediate solver information. See below for more details. | |
- - `x0::AbstractVector`: an initial guess of the same type as `model.meta.x0`. Default: `model.meta.x0`. | |
- - `prec`: a function or callable of `(x, u, v)` that overwrites `u` with a preconditioner applied to `v` at the current iterate `x`. | |
- `prec(x, u, v)` should return `0` on success. Default: u = v, i.e., no preconditioner. | |
- - `print_level::Int`: verbosity level (see the TRB documentation). Default: 1. | |
- - `maxit::Int`: maximum number of iterations. Default: max(50, n), where n is the number of variables. | |
- | |
- ### Callback | |
- | |
- | |
- If re-solves are of interest, it is more efficient to first instantiate a solver object and call `solve!()` repeatedly: | |
- | |
- solver = TRBSolver(model) | |
- stats = GenericExecutionStats(model) | |
- solve!(solver, stats; kwargs...) | |
- | |
- where the `kwargs...` are the same as above. | |
- """ | |
- function trb(model::AbstractNLPModel; kwargs...) | |
- solver = TRBSolver(model) | |
- stats = GenericExecutionStats(model) | |
- solve!(solver, stats; kwargs...) | |
- end | |
- | |
0 function SolverCore.solve!( | |
- solver::TRBSolver{M,T,S,Fobj,Fgrad,Fhess,Vi}, | |
- stats::GenericExecutionStats; | |
- callback = (args...) -> nothing, | |
- x0::AbstractVector{Float64} = solver.model.meta.x0, | |
- prec::Fprec = (x, u, v) -> (u .= v; return 0), | |
- print_level::Int = 1, | |
- maxit::Int = max(50, solver.model.meta.nvar), | |
- ) where {M,T,S,Fobj,Fgrad,Fhess,Vi,Fprec} | |
- | |
0 start_time = time() | |
0 set_status!(stats, :unknown) | |
0 model = solver.model | |
0 n = get_nvar(model) | |
0 length(x0) == n || error("initial guess has inconsistent size") | |
0 x = solver.x .= x0 | |
- | |
32 @reset solver.control[].f_indexing = true # Fortran 1-based indexing | |
0 @reset solver.control[].print_level = print_level | |
0 @reset solver.control[].maxit = maxit | |
0 @reset solver.control[].error = 6 | |
0 @reset solver.control[].out = 6 | |
- | |
0 nnzh = get_nnzh(model) | |
- | |
0 trb_import( | |
- T, | |
- Int, | |
- solver.control, | |
- solver.data, | |
- solver.status, | |
- n, | |
- model.meta.lvar, | |
- model.meta.uvar, | |
- "coordinate", | |
- nnzh, | |
- solver.hrows, | |
- solver.hcols, | |
- C_NULL, | |
- ) | |
- | |
16 trb_import_status = TRB_IMPORT_STATUS(solver.status[]) | |
0 if trb_import_error(trb_import_status) | |
0 @error "trb_import exits with status = $trb_import_status" | |
0 set_solver_specific!(stats, :trb_import_status, trb_import_status) | |
- set_time!(stats, time() - start_time) | |
- set_solution!(stats, x) | |
- return stats | |
- end | |
- | |
16 inform_status = Ref{Int}() | |
16 eval_status = Ref{Int}() | |
- local trb_status::TRB_STATUS | |
0 set_iter!(stats, 0) | |
- | |
- callback(model, solver, stats) | |
0 finished = stats.status != :unknown | |
- | |
0 while !finished | |
288 trb_solve_reverse_with_mat( | |
- T, | |
- Int, | |
- solver.data, | |
- solver.status, | |
- eval_status, | |
- n, | |
- x, | |
- solver.f[], | |
- solver.gx, | |
- nnzh, | |
- solver.hvals, | |
- solver.u, | |
- solver.v, | |
- ) | |
288 trb_status = TRB_STATUS(solver.status[]) | |
0 if trb_status == TRB_SUCCESS # successful termination | |
- finished = true | |
0 elseif trb_error(trb_status) | |
0 @error "trb_solve_reverse_with_mat returns with status = $trb_status" | |
- finished = true | |
0 elseif trb_status == TRB_EVALUATE_OBJECTIVE | |
0 eval_status[] = solver.obj_local(x, solver.f) | |
0 elseif trb_status == TRB_EVALUATE_GRADIENT | |
0 eval_status[] = solver.grad_local(x, solver.gx) | |
0 elseif trb_status == TRB_EVALUATE_HESSIAN | |
0 eval_status[] = solver.hess_local(x, solver.hvals) | |
0 elseif trb_status == TRB_APPLY_PRECONDITIONER | |
0 eval_status[] = prec(x, solver.u, solver.v) | |
- else | |
0 @error "the value $trb_status of status should not occur" | |
- finished = true | |
- end | |
- | |
0 trb_information(T, Int, solver.data, solver.inform, inform_status) | |
0 set_time!(stats, time() - start_time) | |
0 set_solution!(stats, x) | |
288 set_objective!(stats, solver.f[]) | |
323712 norm_pg = solver.inform[].norm_pg::T | |
0 set_dual_residual!(stats, norm_pg) | |
323712 iter = solver.inform[].iter::Int | |
0 set_iter!(stats, iter) | |
0 set_status!(stats, get_status(trb_status)) | |
0 set_solver_specific!(stats, :trb_status, trb_status) | |
- | |
- callback(model, solver, stats) | |
0 finished |= stats.status != :unknown | |
- end | |
- | |
0 trb_information(T, Int, solver.data, solver.inform, inform_status) | |
0 set_time!(stats, time() - start_time) | |
0 set_solution!(stats, x) | |
16 set_objective!(stats, solver.f[]) | |
0 set_primal_residual!(stats, zero(T)) | |
17984 norm_pg = solver.inform[].norm_pg::T | |
0 set_dual_residual!(stats, norm_pg) | |
0 if has_bounds(model) | |
32 stats.multipliers_L .= max.(0, solver.gx) | |
48 stats.multipliers_U .= -min.(0, solver.gx) | |
0 stats.bounds_multipliers_reliable = true | |
- end | |
17984 iter = solver.inform[].iter::Int | |
0 set_iter!(stats, iter) | |
0 stats.status == :user || set_status!(stats, get_status(trb_status)) | |
0 set_solver_specific!(stats, :trb_status, trb_status) | |
- | |
- stats | |
- end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# test_trb.jl | |
# Simple code to test the Julia interface to TRB | |
using GALAHAD | |
using Printf | |
using Accessors | |
# Custom userdata struct | |
struct userdata_trb{T} | |
p::T | |
end | |
function test_trb(::Type{T}, ::Type{INT}) where {T,INT} | |
# Objective function | |
function fun(x::Vector{T}, f::Ref{T}, userdata::userdata_trb) | |
p = userdata.p | |
f[] = (x[1] + x[3] + p)^2 + (x[2] + x[3])^2 + cos(x[1]) | |
return 0 | |
end | |
# Gradient of the objective | |
function grad(x::Vector{T}, g::Vector{T}, userdata::userdata_trb) | |
p = userdata.p | |
g[1] = 2.0 * (x[1] + x[3] + p) - sin(x[1]) | |
g[2] = 2.0 * (x[2] + x[3]) | |
g[3] = 2.0 * (x[1] + x[3] + p) + 2.0 * (x[2] + x[3]) | |
return 0 | |
end | |
# Dense Hessian | |
function hess_dense(x::Vector{T}, hval::Vector{T}, userdata::userdata_trb) | |
hval[1] = 2.0 - cos(x[1]) | |
hval[2] = 0.0 | |
hval[3] = 2.0 | |
hval[4] = 2.0 | |
hval[5] = 2.0 | |
hval[6] = 4.0 | |
return 0 | |
end | |
# Apply preconditioner | |
function prec(x::Vector{T}, u::Vector{T}, v::Vector{T}, userdata::userdata_trb) | |
u[1] = 0.5 * v[1] | |
u[2] = 0.5 * v[2] | |
u[3] = 0.25 * v[3] | |
return 0 | |
end | |
# Derived types | |
data = Ref{Ptr{Cvoid}}() | |
control = Ref{trb_control_type{T,INT}}() | |
inform = Ref{trb_inform_type{T,INT}}() | |
# Set user data | |
userdata = userdata_trb(4.0) | |
# Set problem data | |
n = INT(3) # dimension | |
ne = INT(5) # Hesssian elements | |
x_l = T[-10, -10, -10] | |
x_u = T[0.5, 0.5, 0.5] | |
# Set storage | |
g = zeros(T, n) # gradient | |
status = Ref{INT}() | |
# reverse-communication input/output | |
eval_status = Ref{INT}() | |
f = Ref{T}(0.0) | |
H_dense = zeros(T, div(n * (n + 1), 2)) | |
u = similar(g) | |
v = similar(g) | |
# Initialize TRB | |
trb_initialize(T, INT, data, control, status) | |
# Set user-defined control options | |
@reset control[].f_indexing = true # Fortran sparse matrix indexing | |
@reset control[].print_level = 1 | |
# Start from 1.5 | |
x = T[1.5, 1.5, 1.5] | |
st = 'D' | |
trb_import( | |
T, | |
INT, | |
control, | |
data, | |
status, | |
n, | |
x_l, | |
x_u, | |
"dense", | |
ne, | |
C_NULL, | |
C_NULL, | |
C_NULL, | |
) | |
terminated = false | |
while !terminated # reverse-communication loop | |
trb_solve_reverse_with_mat( | |
T, | |
INT, | |
data, | |
status, | |
eval_status, | |
n, | |
x, | |
f[], | |
g, | |
div(n * (n + 1), 2), | |
H_dense, | |
u, | |
v, | |
) | |
if status[] == 0 # successful termination | |
terminated = true | |
elseif status[] < 0 # error exit | |
terminated = true | |
elseif status[] == 2 # evaluate f | |
eval_status[] = fun(x, f, userdata) | |
elseif status[] == 3 # evaluate g | |
eval_status[] = grad(x, g, userdata) | |
elseif status[] == 4 # evaluate H | |
eval_status[] = hess_dense(x, H_dense, userdata) | |
elseif status[] == 6 # evaluate the product with P | |
eval_status[] = prec(x, u, v, userdata) | |
else | |
@printf(" the value %1i of status should not occur\n", status) | |
end | |
trb_information(T, INT, data, inform, status) | |
@printf("iter %d, status = %d\n", inform[].iter, inform[].status) | |
end | |
# Record solution information | |
trb_information(T, INT, data, inform, status) | |
# Print solution details | |
if inform[].status[] == 0 | |
@printf( | |
"%c:%6i iterations. Optimal objective value = %5.2f status = %1i\n", | |
st, | |
inform[].iter, | |
inform[].obj, | |
inform[].status | |
) | |
else | |
@printf("%c: TRB_solve exit status = %1i\n", st, inform[].status) | |
end | |
# Delete internal workspace | |
trb_terminate(T, INT, data, control, inform) | |
return 0 | |
end | |
test_trb(Float64, Int64) |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Log of Meson test suite run on 2025-04-28T09:30:18.642991 | |
Inherited environment: SHELL=/bin/bash LESS=-R HISTCONTROL=ignoredups TERM_PROGRAM_VERSION=3.2a TMUX=/tmp/tmux-939525384/default,605709,0 __MODULES_LMALTNAME='julia/1.11.0&julia/default&julia&as|julia/latest:nvim/0.10.0&nvim/default&nvim&as|nvim/latest:ripgrep/14.1.0&ripgrep/default&ripgrep&as|ripgrep/latest:nodejs/22.2.0&nodejs/default&nodejs&as|nodejs/latest:rust/1.78.0&rust/default&rust&as|rust/latest:texlive/20241220&texlive/default&texlive&as|texlive/latest' PKG_CONFIG_PATH=/usr/share/pkgconfig:/usr/lib64/pkgconfig:/usr/share/pkgconfig:/usr/lib64/pkgconfig:/usr/share/pkgconfig:/usr/lib64/pkgconfig:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/curl-8.7.1-bpyfqs3pu664ozry53zttfgay624dkey/lib/pkgconfig:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/readline-8.2-mw25evyusrornlhgm4o6ugllqmkgrvez/lib/pkgconfig:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/nghttp2-1.62.0-5jdpmhvluktv2vhqlhabuztqdvfjsziu/lib/pkgconfig:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/openssl-3.3.1-ctkctfzxkobk2pnhxdd37sf2lth7a2fb/lib64/pkgconfig:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/ncurses-6.5-ovfosjws4mdocm6ujurn4p4za2m2uocm/lib/pkgconfig:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/zlib-ng-2.2.1-pfxphampksihtyhob253bmp4pq4pvqvq/lib/pkgconfig:/usr/share/pkgconfig:/usr/lib64/pkgconfig:/usr/share/pkgconfig:/usr/lib64/pkgconfig:/usr/share/pkgconfig:/usr/lib64/pkgconfig:/usr/share/pkgconfig:/usr/lib64/pkgconfig:/usr/share/pkgconfig:/usr/lib64/pkgconfig:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/curl-8.7.1-bpyfqs3pu664ozry53zttfgay624dkey/lib/pkgconfig:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/readline-8.2-mw25evyusrornlhgm4o6ugllqmkgrvez/lib/pkgconfig:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/nghttp2-1.62.0-5jdpmhvluktv2vhqlhabuztqdvfjsziu/lib/pkgconfig:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/openssl-3.3.1-ctkctfzxkobk2pnhxdd37sf2lth7a2fb/lib64/pkgconfig:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/ncurses-6.5-ovfosjws4mdocm6ujurn4p4za2m2uocm/lib/pkgconfig:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/zlib-ng-2.2.1-pfxphampksihtyhob253bmp4pq4pvqvq/lib/pkgconfig:/usr/share/pkgconfig:/usr/lib64/pkgconfig:/usr/share/pkgconfig:/usr/lib64/pkgconfig:/usr/share/pkgconfig:/usr/lib64/pkgconfig:/usr/share/pkgconfig:/usr/lib64/pkgconfig:/usr/share/pkgconfig:/usr/lib64/pkgconfig:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/readline-8.2-mw25evyusrornlhgm4o6ugllqmkgrvez/lib/pkgconfig:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/ncurses-6.5-ovfosjws4mdocm6ujurn4p4za2m2uocm/lib/pkgconfig:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/curl-8.7.1-bpyfqs3pu664ozry53zttfgay624dkey/lib/pkgconfig:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/openssl-3.3.1-ctkctfzxkobk2pnhxdd37sf2lth7a2fb/lib64/pkgconfig:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/zlib-ng-2.2.1-pfxphampksihtyhob253bmp4pq4pvqvq/lib/pkgconfig:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/nghttp2-1.62.0-5jdpmhvluktv2vhqlhabuztqdvfjsziu/lib/pkgconfig:/usr/share/pkgconfig:/usr/lib64/pkgconfig:/usr/share/pkgconfig:/usr/lib64/pkgconfig:/usr/share/pkgconfig:/usr/lib64/pkgconfig:/usr/share/pkgconfig:/usr/lib64/pkgconfig:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/readline-8.2-mw25evyusrornlhgm4o6ugllqmkgrvez/lib/pkgconfig:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/ncurses-6.5-ovfosjws4mdocm6ujurn4p4za2m2uocm/lib/pkgconfig:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/curl-8.7.1-bpyfqs3pu664ozry53zttfgay624dkey/lib/pkgconfig:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/openssl-3.3.1-ctkctfzxkobk2pnhxdd37sf2lth7a2fb/lib64/pkgconfig:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/zlib-ng-2.2.1-pfxphampksihtyhob253bmp4pq4pvqvq/lib/pkgconfig:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/nghttp2-1.62.0-5jdpmhvluktv2vhqlhabuztqdvfjsziu/lib/pkgconfig:/usr/share/pkgconfig:/usr/lib64/pkgconfig:/usr/share/pkgconfig:/usr/lib64/pkgconfig HOSTNAME=atlas.gerad.lan HISTSIZE=1000 LANGUAGE=en_US FPATH=/usr/share/lmod/lmod/init/ksh_funcs LMOD_DIR=/usr/share/lmod/lmod/libexec EDITOR=nvim PWD=/home/orban/dev/ralna/src/GALAHAD LOGNAME=orban XDG_SESSION_TYPE=tty MODULESHOME=/usr/share/lmod/lmod MANPATH=/usr/share/man:/usr/share/man:/usr/share/man:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/man:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/curl-8.7.1-bpyfqs3pu664ozry53zttfgay624dkey/share/man:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/readline-8.2-mw25evyusrornlhgm4o6ugllqmkgrvez/share/man:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/unzip-6.0-xnrfvmuv7ulfii3zvc7y3ikclt4ubwoy/man:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/nghttp2-1.62.0-5jdpmhvluktv2vhqlhabuztqdvfjsziu/share/man:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/zlib-ng-2.2.1-pfxphampksihtyhob253bmp4pq4pvqvq/share/man:/usr/share/man:/usr/share/man:/usr/share/man:/usr/share/man:/usr/share/man:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/man:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/curl-8.7.1-bpyfqs3pu664ozry53zttfgay624dkey/share/man:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/readline-8.2-mw25evyusrornlhgm4o6ugllqmkgrvez/share/man:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/unzip-6.0-xnrfvmuv7ulfii3zvc7y3ikclt4ubwoy/man:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/nghttp2-1.62.0-5jdpmhvluktv2vhqlhabuztqdvfjsziu/share/man:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/zlib-ng-2.2.1-pfxphampksihtyhob253bmp4pq4pvqvq/share/man:/usr/share/man:/usr/share/man:/usr/share/man:/usr/share/man:/usr/share/man:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/man:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/unzip-6.0-xnrfvmuv7ulfii3zvc7y3ikclt4ubwoy/man:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/readline-8.2-mw25evyusrornlhgm4o6ugllqmkgrvez/share/man:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/curl-8.7.1-bpyfqs3pu664ozry53zttfgay624dkey/share/man:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/zlib-ng-2.2.1-pfxphampksihtyhob253bmp4pq4pvqvq/share/man:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/nghttp2-1.62.0-5jdpmhvluktv2vhqlhabuztqdvfjsziu/share/man:/usr/share/man:/usr/share/man:/usr/share/man:/usr/share/man:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/man:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/unzip-6.0-xnrfvmuv7ulfii3zvc7y3ikclt4ubwoy/man:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/readline-8.2-mw25evyusrornlhgm4o6ugllqmkgrvez/share/man:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/curl-8.7.1-bpyfqs3pu664ozry53zttfgay624dkey/share/man:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/zlib-ng-2.2.1-pfxphampksihtyhob253bmp4pq4pvqvq/share/man:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/nghttp2-1.62.0-5jdpmhvluktv2vhqlhabuztqdvfjsziu/share/man:/usr/share/man:/usr/share/man:/home/x86_64-unknown-linux_al9-gnu/texlive-20241220/texmf-dist/doc/man:/home/x86_64-unknown-linux_al9-gnu/rust-1.78.0/share/man:/home/x86_64-unknown-linux_al9-gnu/node-v22.2.0/share/man:/home/x86_64-unknown-linux_al9-gnu/nvim-v0.10.0/share/man:/usr/share/lmod/lmod/share/man: SPACK_PYTHON=/usr/bin/python3 OPENBLAS_NUM_THREADS=1 MOTD_SHOWN=pam __MODULES_SHARE_MANPATH=:1 HOME=/home/orban LANG=en_US.UTF-8 MASTSIF=/home/orban/dev/ralna/src/sif LS_COLORS='no=00:fi=00:di=01;32:ln=01;36:pi=40;33:so=01;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=01;32:*.cmd=01;32:*.exe=01;32:*.com=01;32:*.btm=01;32:*.bat=01;32:*.sh=01;32:*.csh=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.bz=01;31:*.tz=01;31:*.rpm=01;31:*.cpio=01;31:*.jpg=01;35:*.gif=01;35:*.bmp=01;35:*.xbm=01;35:*.xpm=01;35:*.png=01;35:*.tif=01;35:' LMOD_SETTARG_FULL_SUPPORT=no PROMPT_COMMAND=__prompt_command CMAKE_PREFIX_PATH=/home/orban/src/spack/opt/spack/linux-zen2/metis-5.1.0-ft3ur2wtpdcyxbsddck4sglyhu4lf63g:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/fzf-0.48.1-xuatqtgsvftk2j3fimor7wdaqszcmlam:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/gcc-runtime-11.4.1-6uswpwvtrxj4brk2ithd77jbfp5snfyo:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lazygit-0.41.0-frqftrx4e6cwjtw4hwfxhi62qlhtqmug:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/gcc-runtime-11.4.1-6uswpwvtrxj4brk2ithd77jbfp5snfyo:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/curl-8.7.1-bpyfqs3pu664ozry53zttfgay624dkey:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/readline-8.2-mw25evyusrornlhgm4o6ugllqmkgrvez:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/unzip-6.0-xnrfvmuv7ulfii3zvc7y3ikclt4ubwoy:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/nghttp2-1.62.0-5jdpmhvluktv2vhqlhabuztqdvfjsziu:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/openssl-3.3.1-ctkctfzxkobk2pnhxdd37sf2lth7a2fb:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/ncurses-6.5-ovfosjws4mdocm6ujurn4p4za2m2uocm:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/zlib-ng-2.2.1-pfxphampksihtyhob253bmp4pq4pvqvq:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/gcc-runtime-11.4.1-6uswpwvtrxj4brk2ithd77jbfp5snfyo:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/fd-10.1.0-pzafhdbjdy7okp44wa6ghnmezljubrcl:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/gcc-runtime-11.4.1-6uswpwvtrxj4brk2ithd77jbfp5snfyo:/home/orban/src/spack/opt/spack/linux-zen2/metis-5.1.0-ft3ur2wtpdcyxbsddck4sglyhu4lf63g:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/fzf-0.48.1-xuatqtgsvftk2j3fimor7wdaqszcmlam:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/gcc-runtime-11.4.1-6uswpwvtrxj4brk2ithd77jbfp5snfyo:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lazygit-0.41.0-frqftrx4e6cwjtw4hwfxhi62qlhtqmug:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/gcc-runtime-11.4.1-6uswpwvtrxj4brk2ithd77jbfp5snfyo:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/curl-8.7.1-bpyfqs3pu664ozry53zttfgay624dkey:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/readline-8.2-mw25evyusrornlhgm4o6ugllqmkgrvez:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/unzip-6.0-xnrfvmuv7ulfii3zvc7y3ikclt4ubwoy:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/nghttp2-1.62.0-5jdpmhvluktv2vhqlhabuztqdvfjsziu:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/openssl-3.3.1-ctkctfzxkobk2pnhxdd37sf2lth7a2fb:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/ncurses-6.5-ovfosjws4mdocm6ujurn4p4za2m2uocm:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/zlib-ng-2.2.1-pfxphampksihtyhob253bmp4pq4pvqvq:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/gcc-runtime-11.4.1-6uswpwvtrxj4brk2ithd77jbfp5snfyo:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/fd-10.1.0-pzafhdbjdy7okp44wa6ghnmezljubrcl:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/gcc-runtime-11.4.1-6uswpwvtrxj4brk2ithd77jbfp5snfyo:/home/orban/src/spack/opt/spack/linux-zen2/metis-5.1.0-ft3ur2wtpdcyxbsddck4sglyhu4lf63g:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/fzf-0.48.1-xuatqtgsvftk2j3fimor7wdaqszcmlam:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/gcc-runtime-11.4.1-6uswpwvtrxj4brk2ithd77jbfp5snfyo:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lazygit-0.41.0-frqftrx4e6cwjtw4hwfxhi62qlhtqmug:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/gcc-runtime-11.4.1-6uswpwvtrxj4brk2ithd77jbfp5snfyo:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/unzip-6.0-xnrfvmuv7ulfii3zvc7y3ikclt4ubwoy:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/readline-8.2-mw25evyusrornlhgm4o6ugllqmkgrvez:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/ncurses-6.5-ovfosjws4mdocm6ujurn4p4za2m2uocm:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/curl-8.7.1-bpyfqs3pu664ozry53zttfgay624dkey:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/openssl-3.3.1-ctkctfzxkobk2pnhxdd37sf2lth7a2fb:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/zlib-ng-2.2.1-pfxphampksihtyhob253bmp4pq4pvqvq:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/nghttp2-1.62.0-5jdpmhvluktv2vhqlhabuztqdvfjsziu:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/gcc-runtime-11.4.1-6uswpwvtrxj4brk2ithd77jbfp5snfyo:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/fd-10.1.0-pzafhdbjdy7okp44wa6ghnmezljubrcl:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/gcc-runtime-11.4.1-6uswpwvtrxj4brk2ithd77jbfp5snfyo:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/fzf-0.48.1-xuatqtgsvftk2j3fimor7wdaqszcmlam:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/gcc-runtime-11.4.1-6uswpwvtrxj4brk2ithd77jbfp5snfyo:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lazygit-0.41.0-frqftrx4e6cwjtw4hwfxhi62qlhtqmug:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/gcc-runtime-11.4.1-6uswpwvtrxj4brk2ithd77jbfp5snfyo:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/unzip-6.0-xnrfvmuv7ulfii3zvc7y3ikclt4ubwoy:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/readline-8.2-mw25evyusrornlhgm4o6ugllqmkgrvez:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/ncurses-6.5-ovfosjws4mdocm6ujurn4p4za2m2uocm:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/curl-8.7.1-bpyfqs3pu664ozry53zttfgay624dkey:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/openssl-3.3.1-ctkctfzxkobk2pnhxdd37sf2lth7a2fb:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/zlib-ng-2.2.1-pfxphampksihtyhob253bmp4pq4pvqvq:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/nghttp2-1.62.0-5jdpmhvluktv2vhqlhabuztqdvfjsziu:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/gcc-runtime-11.4.1-6uswpwvtrxj4brk2ithd77jbfp5snfyo:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/fd-10.1.0-pzafhdbjdy7okp44wa6ghnmezljubrcl:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/gcc-runtime-11.4.1-6uswpwvtrxj4brk2ithd77jbfp5snfyo LMOD_VERSION=8.7.55 SSH_CONNECTION='10.100.11.21 36556 10.100.12.75 22' SPACK_ROOT=/home/orban/src/spack INFOPATH=/home/x86_64-unknown-linux_al9-gnu/texlive-20241220/texmf-dist/doc/info MODULEPATH_ROOT=/usr/share/modulefiles SPACK_LOADED_HASHES=ft3ur2wtpdcyxbsddck4sglyhu4lf63g:xuatqtgsvftk2j3fimor7wdaqszcmlam:frqftrx4e6cwjtw4hwfxhi62qlhtqmug:hgq3ejfiienjkef2ku6wo6ur7cxdetys:pzafhdbjdy7okp44wa6ghnmezljubrcl:ft3ur2wtpdcyxbsddck4sglyhu4lf63g:xuatqtgsvftk2j3fimor7wdaqszcmlam:frqftrx4e6cwjtw4hwfxhi62qlhtqmug:hgq3ejfiienjkef2ku6wo6ur7cxdetys:pzafhdbjdy7okp44wa6ghnmezljubrcl:ft3ur2wtpdcyxbsddck4sglyhu4lf63g:xuatqtgsvftk2j3fimor7wdaqszcmlam:frqftrx4e6cwjtw4hwfxhi62qlhtqmug:hgq3ejfiienjkef2ku6wo6ur7cxdetys:pzafhdbjdy7okp44wa6ghnmezljubrcl:xuatqtgsvftk2j3fimor7wdaqszcmlam:frqftrx4e6cwjtw4hwfxhi62qlhtqmug:hgq3ejfiienjkef2ku6wo6ur7cxdetys:pzafhdbjdy7okp44wa6ghnmezljubrcl XDG_SESSION_CLASS=user LMOD_PKG=/usr/share/lmod/lmod SELINUX_ROLE_REQUESTED='' TERM=screen-256color CONFIG_GUESS2=x86_64-unknown-linux_al9-gnu ACLOCAL_PATH=/usr/share/aclocal:/usr/share/aclocal:/usr/share/aclocal:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/curl-8.7.1-bpyfqs3pu664ozry53zttfgay624dkey/share/aclocal:/usr/share/aclocal:/usr/share/aclocal:/usr/share/aclocal:/usr/share/aclocal:/usr/share/aclocal:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/curl-8.7.1-bpyfqs3pu664ozry53zttfgay624dkey/share/aclocal:/usr/share/aclocal:/usr/share/aclocal:/usr/share/aclocal:/usr/share/aclocal:/usr/share/aclocal:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/curl-8.7.1-bpyfqs3pu664ozry53zttfgay624dkey/share/aclocal:/usr/share/aclocal:/usr/share/aclocal:/usr/share/aclocal:/usr/share/aclocal:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/curl-8.7.1-bpyfqs3pu664ozry53zttfgay624dkey/share/aclocal:/usr/share/aclocal:/usr/share/aclocal LESSOPEN='||/usr/bin/lesspipe.sh %s' USER=orban TMUX_PANE=%0 CONFIG_GUESS=x86_64-unknown-linux-gnu LOADEDMODULES=julia/1.11.0:nvim/0.10.0:ripgrep/14.1.0:nodejs/22.2.0:rust/1.78.0:texlive/20241220 SELINUX_USE_CURRENT_RANGE='' LMOD_ROOT=/usr/share/lmod SHLVL=2 BASH_ENV=/usr/share/lmod/lmod/init/bash LMOD_sys=Linux XDG_SESSION_ID=10 LD_LIBRARY_PATH=/home/orban/dev/ralna/lib: LC_CTYPE=en_US.UTF-8 XDG_RUNTIME_DIR=/run/user/939525384 S_COLORS=auto SSH_CLIENT='10.100.11.21 36556 22' LC_TIME=en_US.UTF-8 OMP_NUM_THREADS=1 which_declare='declare -f' LUA_CPATH='/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/lib/lua/5.3/?.so;/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/lib/lua/5.3/?.so;/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/lib/lua/5.3/?.so;/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/lib/lua/5.3/?.so' XDG_DATA_DIRS=/home/orban/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share:/usr/share PATH=/home/orban/dev/ralna/bin:/home/orban/src/spack/opt/spack/linux-zen2/metis-5.1.0-ft3ur2wtpdcyxbsddck4sglyhu4lf63g/bin:/home/orban/src/spack/opt/spack/linux-zen2/metis-5.1.0-ft3ur2wtpdcyxbsddck4sglyhu4lf63g/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/fzf-0.48.1-xuatqtgsvftk2j3fimor7wdaqszcmlam/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/fzf-0.48.1-xuatqtgsvftk2j3fimor7wdaqszcmlam/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lazygit-0.41.0-frqftrx4e6cwjtw4hwfxhi62qlhtqmug/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lazygit-0.41.0-frqftrx4e6cwjtw4hwfxhi62qlhtqmug/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/curl-8.7.1-bpyfqs3pu664ozry53zttfgay624dkey/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/unzip-6.0-xnrfvmuv7ulfii3zvc7y3ikclt4ubwoy/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/curl-8.7.1-bpyfqs3pu664ozry53zttfgay624dkey/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/readline-8.2-mw25evyusrornlhgm4o6ugllqmkgrvez/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/unzip-6.0-xnrfvmuv7ulfii3zvc7y3ikclt4ubwoy/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/nghttp2-1.62.0-5jdpmhvluktv2vhqlhabuztqdvfjsziu/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/openssl-3.3.1-ctkctfzxkobk2pnhxdd37sf2lth7a2fb/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/ncurses-6.5-ovfosjws4mdocm6ujurn4p4za2m2uocm/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/fd-10.1.0-pzafhdbjdy7okp44wa6ghnmezljubrcl/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/fd-10.1.0-pzafhdbjdy7okp44wa6ghnmezljubrcl/bin:/home/orban/src/spack/bin:/home/orban/.local/bin:/home/orban/.npm-global/bin:/home/orban/src/spack/opt/spack/linux-zen2/metis-5.1.0-ft3ur2wtpdcyxbsddck4sglyhu4lf63g/bin:/home/orban/src/spack/opt/spack/linux-zen2/metis-5.1.0-ft3ur2wtpdcyxbsddck4sglyhu4lf63g/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/fzf-0.48.1-xuatqtgsvftk2j3fimor7wdaqszcmlam/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/fzf-0.48.1-xuatqtgsvftk2j3fimor7wdaqszcmlam/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lazygit-0.41.0-frqftrx4e6cwjtw4hwfxhi62qlhtqmug/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lazygit-0.41.0-frqftrx4e6cwjtw4hwfxhi62qlhtqmug/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/curl-8.7.1-bpyfqs3pu664ozry53zttfgay624dkey/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/unzip-6.0-xnrfvmuv7ulfii3zvc7y3ikclt4ubwoy/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/curl-8.7.1-bpyfqs3pu664ozry53zttfgay624dkey/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/readline-8.2-mw25evyusrornlhgm4o6ugllqmkgrvez/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/unzip-6.0-xnrfvmuv7ulfii3zvc7y3ikclt4ubwoy/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/nghttp2-1.62.0-5jdpmhvluktv2vhqlhabuztqdvfjsziu/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/openssl-3.3.1-ctkctfzxkobk2pnhxdd37sf2lth7a2fb/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/ncurses-6.5-ovfosjws4mdocm6ujurn4p4za2m2uocm/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/fd-10.1.0-pzafhdbjdy7okp44wa6ghnmezljubrcl/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/fd-10.1.0-pzafhdbjdy7okp44wa6ghnmezljubrcl/bin:/home/orban/src/spack/bin:/home/orban/.local/bin:/home/orban/.npm-global/bin:/home/orban/src/spack/opt/spack/linux-zen2/metis-5.1.0-ft3ur2wtpdcyxbsddck4sglyhu4lf63g/bin:/home/orban/src/spack/opt/spack/linux-zen2/metis-5.1.0-ft3ur2wtpdcyxbsddck4sglyhu4lf63g/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/fzf-0.48.1-xuatqtgsvftk2j3fimor7wdaqszcmlam/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/fzf-0.48.1-xuatqtgsvftk2j3fimor7wdaqszcmlam/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lazygit-0.41.0-frqftrx4e6cwjtw4hwfxhi62qlhtqmug/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lazygit-0.41.0-frqftrx4e6cwjtw4hwfxhi62qlhtqmug/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/unzip-6.0-xnrfvmuv7ulfii3zvc7y3ikclt4ubwoy/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/curl-8.7.1-bpyfqs3pu664ozry53zttfgay624dkey/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/unzip-6.0-xnrfvmuv7ulfii3zvc7y3ikclt4ubwoy/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/readline-8.2-mw25evyusrornlhgm4o6ugllqmkgrvez/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/ncurses-6.5-ovfosjws4mdocm6ujurn4p4za2m2uocm/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/curl-8.7.1-bpyfqs3pu664ozry53zttfgay624dkey/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/openssl-3.3.1-ctkctfzxkobk2pnhxdd37sf2lth7a2fb/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/nghttp2-1.62.0-5jdpmhvluktv2vhqlhabuztqdvfjsziu/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/fd-10.1.0-pzafhdbjdy7okp44wa6ghnmezljubrcl/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/fd-10.1.0-pzafhdbjdy7okp44wa6ghnmezljubrcl/bin:/home/orban/src/spack/bin:/home/orban/.local/bin:/home/orban/.npm-global/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/fzf-0.48.1-xuatqtgsvftk2j3fimor7wdaqszcmlam/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/fzf-0.48.1-xuatqtgsvftk2j3fimor7wdaqszcmlam/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lazygit-0.41.0-frqftrx4e6cwjtw4hwfxhi62qlhtqmug/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lazygit-0.41.0-frqftrx4e6cwjtw4hwfxhi62qlhtqmug/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/unzip-6.0-xnrfvmuv7ulfii3zvc7y3ikclt4ubwoy/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/curl-8.7.1-bpyfqs3pu664ozry53zttfgay624dkey/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/unzip-6.0-xnrfvmuv7ulfii3zvc7y3ikclt4ubwoy/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/readline-8.2-mw25evyusrornlhgm4o6ugllqmkgrvez/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/ncurses-6.5-ovfosjws4mdocm6ujurn4p4za2m2uocm/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/curl-8.7.1-bpyfqs3pu664ozry53zttfgay624dkey/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/openssl-3.3.1-ctkctfzxkobk2pnhxdd37sf2lth7a2fb/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/nghttp2-1.62.0-5jdpmhvluktv2vhqlhabuztqdvfjsziu/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/fd-10.1.0-pzafhdbjdy7okp44wa6ghnmezljubrcl/bin:/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/fd-10.1.0-pzafhdbjdy7okp44wa6ghnmezljubrcl/bin:/home/orban/src/spack/bin:/home/orban/.local/bin:/home/orban/.npm-global/bin:/home/x86_64-unknown-linux_al9-gnu/texlive-20241220/bin/x86_64-linux:/home/x86_64-unknown-linux_al9-gnu/rust-1.78.0/bin:/home/x86_64-unknown-linux_al9-gnu/node-v22.2.0/bin:/home/x86_64-unknown-linux_al9-gnu/ripgrep-14.1.0/bin:/home/x86_64-unknown-linux_al9-gnu/nvim-v0.10.0/bin:/home/x86_64-unknown-linux_al9-gnu/julia-1.11.0/bin:/home/modules/5.3.0/x86_64-unknown-linux_al9-gnu/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin SELINUX_LEVEL_REQUESTED='' MODULEPATH=/home/orban/modulefiles:/home/modules/modulefiles-arch/x86_64-unknown-linux_al9-gnu _LMFILES_=/home/modules/modulefiles-arch/x86_64-unknown-linux_al9-gnu/julia/1.11.0:/home/modules/modulefiles-arch/x86_64-unknown-linux_al9-gnu/nvim/0.10.0:/home/modules/modulefiles-arch/x86_64-unknown-linux_al9-gnu/ripgrep/14.1.0:/home/modules/modulefiles-arch/x86_64-unknown-linux_al9-gnu/nodejs/22.2.0:/home/modules/modulefiles-arch/x86_64-unknown-linux_al9-gnu/rust/1.78.0:/home/modules/modulefiles-arch/x86_64-unknown-linux_al9-gnu/texlive/20241220 DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/939525384/bus LMOD_CMD=/usr/share/lmod/lmod/libexec/lmod MKL_NUM_THREADS=1 MAIL=/var/spool/mail/orban SSH_TTY=/dev/pts/0 LUA_PATH='/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/lib/lua/5.3/?/init.lua;/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/lib/lua/5.3/?.lua;/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/share/lua/5.3/?/init.lua;/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/share/lua/5.3/?.lua;/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/lib/lua/5.3/?/init.lua;/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/lib/lua/5.3/?.lua;/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/share/lua/5.3/?/init.lua;/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/share/lua/5.3/?.lua;/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/lib/lua/5.3/?/init.lua;/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/lib/lua/5.3/?.lua;/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/share/lua/5.3/?/init.lua;/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/share/lua/5.3/?.lua;/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/lib/lua/5.3/?/init.lua;/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/lib/lua/5.3/?.lua;/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/share/lua/5.3/?/init.lua;/home/orban/src/spack/opt/spack/linux-almalinux9-zen2/gcc-11.4.1/lua-5.3.6-hgq3ejfiienjkef2ku6wo6ur7cxdetys/share/lua/5.3/?.lua' LC_NUMERIC=en_US.UTF-8 OLDPWD=/home/orban/dev/ralna/src/trb_sif_by_hand MODULES_CMD=/home/modules/5.3.0/x86_64-unknown-linux_al9-gnu/libexec/modulecmd.tcl TERM_PROGRAM=tmux BASH_FUNC_ml%%='() { module ml "$@" | |
}' BASH_FUNC_which%%='() { ( alias; | |
eval ${which_declare} ) | /usr/bin/which --tty-only --read-alias --read-functions --show-tilde --show-dot $@ | |
}' BASH_FUNC_module%%='() { local _mlredir=1; | |
if [ -n "${MODULES_REDIRECT_OUTPUT+x}" ]; then | |
if [ "$MODULES_REDIRECT_OUTPUT" = '"'"'0'"'"' ]; then | |
_mlredir=0; | |
else | |
if [ "$MODULES_REDIRECT_OUTPUT" = '"'"'1'"'"' ]; then | |
_mlredir=1; | |
fi; | |
fi; | |
fi; | |
case " $@ " in | |
*'"'"' --no-redirect '"'"'*) | |
_mlredir=0 | |
;; | |
*'"'"' --redirect '"'"'*) | |
_mlredir=1 | |
;; | |
esac; | |
if [ $_mlredir -eq 0 ]; then | |
_module_raw "$@"; | |
else | |
_module_raw "$@" 2>&1; | |
fi | |
}' BASH_FUNC__spack_shell_wrapper%%='() { for var in DYLD_LIBRARY_PATH DYLD_FALLBACK_LIBRARY_PATH; | |
do | |
eval "if [ -n \"\${${var}-}\" ]; then export SPACK_$var=\${${var}}; fi"; | |
done; | |
if [ -n "${ZSH_VERSION:-}" ]; then | |
emulate -L sh; | |
fi; | |
_sp_flags=""; | |
while [ ! -z ${1+x} ] && [ "${1#-}" != "${1}" ]; do | |
_sp_flags="$_sp_flags $1"; | |
shift; | |
done; | |
if [ -n "$_sp_flags" ] && [ "${_sp_flags#*h}" != "${_sp_flags}" ] || [ "${_sp_flags#*V}" != "${_sp_flags}" ]; then | |
command spack $_sp_flags "$@"; | |
return; | |
fi; | |
_sp_subcommand=""; | |
if [ ! -z ${1+x} ]; then | |
_sp_subcommand="$1"; | |
shift; | |
fi; | |
case $_sp_subcommand in | |
"cd") | |
_sp_arg=""; | |
if [ -n "$1" ]; then | |
_sp_arg="$1"; | |
shift; | |
fi; | |
if [ "$_sp_arg" = "-h" ] || [ "$_sp_arg" = "--help" ]; then | |
command spack cd -h; | |
else | |
LOC="$(SPACK_COLOR="${SPACK_COLOR:-always}" spack location $_sp_arg "$@")"; | |
if [ -d "$LOC" ]; then | |
cd "$LOC"; | |
else | |
return 1; | |
fi; | |
fi; | |
return | |
;; | |
"env") | |
_sp_arg=""; | |
if [ -n "$1" ]; then | |
_sp_arg="$1"; | |
shift; | |
fi; | |
if [ "$_sp_arg" = "-h" ] || [ "$_sp_arg" = "--help" ]; then | |
command spack env -h; | |
else | |
case $_sp_arg in | |
activate) | |
_a=" $@"; | |
if [ "${_a#* --sh}" != "$_a" ] || [ "${_a#* --csh}" != "$_a" ] || [ "${_a#* -h}" != "$_a" ] || [ "${_a#* --help}" != "$_a" ]; then | |
command spack env activate "$@"; | |
else | |
stdout="$(SPACK_COLOR="${SPACK_COLOR:-always}" command spack $_sp_flags env activate --sh "$@")" || return; | |
eval "$stdout"; | |
fi | |
;; | |
deactivate) | |
_a=" $@"; | |
if [ "${_a#* --sh}" != "$_a" ] || [ "${_a#* --csh}" != "$_a" ]; then | |
command spack env deactivate "$@"; | |
else | |
if [ -n "$*" ]; then | |
command spack env deactivate -h; | |
else | |
stdout="$(SPACK_COLOR="${SPACK_COLOR:-always}" command spack $_sp_flags env deactivate --sh)" || return; | |
eval "$stdout"; | |
fi; | |
fi | |
;; | |
*) | |
command spack env $_sp_arg "$@" | |
;; | |
esac; | |
fi; | |
return | |
;; | |
"load" | "unload") | |
_a=" $@"; | |
if [ "${_a#* --sh}" != "$_a" ] || [ "${_a#* --csh}" != "$_a" ] || [ "${_a#* -h}" != "$_a" ] || [ "${_a#* --list}" != "$_a" ] || [ "${_a#* --help}" != "$_a" ]; then | |
command spack $_sp_flags $_sp_subcommand "$@"; | |
else | |
stdout="$(SPACK_COLOR="${SPACK_COLOR:-always}" command spack $_sp_flags $_sp_subcommand --sh "$@")" || return; | |
eval "$stdout"; | |
fi | |
;; | |
*) | |
command spack $_sp_flags $_sp_subcommand "$@" | |
;; | |
esac | |
}' BASH_FUNC__module_raw%%='() { eval "$(/usr/bin/tclsh '"'"'/home/modules/5.3.0/x86_64-unknown-linux_al9-gnu/libexec/modulecmd.tcl'"'"' bash "$@")"; | |
_mlstatus=$?; | |
return $_mlstatus | |
}' BASH_FUNC_spack%%='() { : this is a shell function from: /home/orban/src/spack/share/spack/setup-env.sh; | |
: the real spack script is here: /home/orban/src/spack/bin/spack; | |
_spack_shell_wrapper "$@"; | |
return $? | |
}' _=/home/orban/.local/bin/meson | |
=================================== 1/637 ==================================== | |
test: GALAHAD:mkl_pardiso+single+fortran / mkl_pardisot_single | |
start time: 13:30:18 | |
duration: 0.03s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MALLOC_PERTURB_=169 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/mkl_pardisot_single | |
----------------------------------- stdout ----------------------------------- | |
MKL PARDISO is not available | |
============================================================================== | |
=================================== 2/637 ==================================== | |
test: GALAHAD:mkl_pardiso+double+fortran / mkl_pardisot_double | |
start time: 13:30:18 | |
duration: 0.03s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=22 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/mkl_pardisot_double | |
----------------------------------- stdout ----------------------------------- | |
MKL PARDISO is not available | |
============================================================================== | |
=================================== 3/637 ==================================== | |
test: GALAHAD:mkl_pardiso+quadruple+fortran / mkl_pardisot_quadruple | |
start time: 13:30:18 | |
duration: 0.02s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MALLOC_PERTURB_=8 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/mkl_pardisot_quadruple | |
----------------------------------- stdout ----------------------------------- | |
MKL PARDISO is not available | |
============================================================================== | |
=================================== 4/637 ==================================== | |
test: GALAHAD:mumps+single+fortran / mumpst_single | |
start time: 13:30:18 | |
duration: 0.02s | |
result: exit status 0 | |
command: MALLOC_PERTURB_=133 LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/mumpst_single | |
----------------------------------- stdout ----------------------------------- | |
No MPi available, stopping | |
============================================================================== | |
=================================== 5/637 ==================================== | |
test: GALAHAD:mumps+double+fortran / mumpst_double | |
start time: 13:30:18 | |
duration: 0.03s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=184 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/mumpst_double | |
----------------------------------- stdout ----------------------------------- | |
No MPi available, stopping | |
============================================================================== | |
=================================== 6/637 ==================================== | |
test: GALAHAD:mumps+quadruple+fortran / mumpst_quadruple | |
start time: 13:30:18 | |
duration: 0.01s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 MALLOC_PERTURB_=248 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/mumpst_quadruple | |
----------------------------------- stdout ----------------------------------- | |
No MPi available, stopping | |
============================================================================== | |
=================================== 7/637 ==================================== | |
test: GALAHAD:pardiso+single+fortran / pardisot_single | |
start time: 13:30:18 | |
duration: 0.02s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=242 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/pardisot_single | |
----------------------------------- stdout ----------------------------------- | |
PARDISO is not available | |
============================================================================== | |
=================================== 8/637 ==================================== | |
test: GALAHAD:pardiso+double+fortran / pardisot_double | |
start time: 13:30:18 | |
duration: 0.04s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 MALLOC_PERTURB_=124 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/pardisot_double | |
----------------------------------- stdout ----------------------------------- | |
PARDISO is not available | |
============================================================================== | |
=================================== 9/637 ==================================== | |
test: GALAHAD:pardiso+quadruple+fortran / pardisot_quadruple | |
start time: 13:30:18 | |
duration: 0.01s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=10 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/pardisot_quadruple | |
----------------------------------- stdout ----------------------------------- | |
PARDISO is not available | |
============================================================================== | |
=================================== 10/637 =================================== | |
test: GALAHAD:wsmp+single+fortran / wsmpt_single | |
start time: 13:30:18 | |
duration: 0.02s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=39 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/wsmpt_single | |
----------------------------------- stdout ----------------------------------- | |
WSMP is not available | |
============================================================================== | |
=================================== 11/637 =================================== | |
test: GALAHAD:wsmp+double+fortran / wsmpt_double | |
start time: 13:30:18 | |
duration: 0.02s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=47 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/wsmpt_double | |
----------------------------------- stdout ----------------------------------- | |
WSMP is not available | |
============================================================================== | |
=================================== 12/637 =================================== | |
test: GALAHAD:wsmp+quadruple+fortran / wsmpt_quadruple | |
start time: 13:30:18 | |
duration: 0.01s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MALLOC_PERTURB_=215 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/wsmpt_quadruple | |
----------------------------------- stdout ----------------------------------- | |
WSMP is not available | |
============================================================================== | |
=================================== 13/637 =================================== | |
test: GALAHAD:pastix+single+fortran / pastixt_single | |
start time: 13:30:18 | |
duration: 0.02s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 MALLOC_PERTURB_=127 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/pastixt_single | |
----------------------------------- stdout ----------------------------------- | |
no PaStiX available | |
============================================================================== | |
=================================== 14/637 =================================== | |
test: GALAHAD:pastix+double+fortran / pastixt_double | |
start time: 13:30:18 | |
duration: 0.02s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MALLOC_PERTURB_=36 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/pastixt_double | |
----------------------------------- stdout ----------------------------------- | |
no PaStiX available | |
============================================================================== | |
=================================== 15/637 =================================== | |
test: GALAHAD:pastix+quadruple+fortran / pastixt_quadruple | |
start time: 13:30:18 | |
duration: 0.01s | |
result: exit status 0 | |
command: MALLOC_PERTURB_=123 LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/pastixt_quadruple | |
----------------------------------- stdout ----------------------------------- | |
no PaStiX available | |
============================================================================== | |
=================================== 16/637 =================================== | |
test: GALAHAD:smt+single+fortran / smtt_single | |
start time: 13:30:18 | |
duration: 0.01s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 MALLOC_PERTURB_=194 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/smtt_single | |
----------------------------------- stdout ----------------------------------- | |
m, n, ne = 1 1 1 | |
id, type = mat symm | |
row, col, ptr, val = 1 1 1 1.00E+00 | |
============================================================================== | |
=================================== 17/637 =================================== | |
test: GALAHAD:smt+double+fortran / smtt_double | |
start time: 13:30:18 | |
duration: 0.04s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MALLOC_PERTURB_=75 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/smtt_double | |
----------------------------------- stdout ----------------------------------- | |
m, n, ne = 1 1 1 | |
id, type = mat symm | |
row, col, ptr, val = 1 1 1 1.00E+00 | |
============================================================================== | |
=================================== 18/637 =================================== | |
test: GALAHAD:smt+quadruple+fortran / smtt_quadruple | |
start time: 13:30:19 | |
duration: 0.01s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 MALLOC_PERTURB_=113 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/smtt_quadruple | |
----------------------------------- stdout ----------------------------------- | |
m, n, ne = 1 1 1 | |
id, type = mat symm | |
row, col, ptr, val = 1 1 1 1.00E+00 | |
============================================================================== | |
=================================== 19/637 =================================== | |
test: GALAHAD:sort+single+fortran / sortt_single | |
start time: 13:30:19 | |
duration: 0.02s | |
result: exit status 0 | |
command: MALLOC_PERTURB_=238 LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/sortt_single | |
----------------------------------- stdout ----------------------------------- | |
Test error returns | |
inform = 1 | |
inform = 1 | |
Order real values | |
The 1-th(-st) smallest value is -9.0 | |
The 2-th(-st) smallest value is -8.0 | |
The 3-th(-st) smallest value is -7.0 | |
The 4-th(-st) smallest value is -6.0 | |
The 5-th(-st) smallest value is -5.0 | |
The 6-th(-st) smallest value is -4.0 | |
The 7-th(-st) smallest value is -3.0 | |
The 8-th(-st) smallest value is -2.0 | |
The 9-th(-st) smallest value is -1.0 | |
The 10-th(-st) smallest value is 0.0 | |
The 11-th(-st) smallest value is 1.0 | |
The 12-th(-st) smallest value is 2.0 | |
The 13-th(-st) smallest value is 3.0 | |
The 14-th(-st) smallest value is 4.0 | |
The 15-th(-st) smallest value is 5.0 | |
The 16-th(-st) smallest value is 6.0 | |
The 17-th(-st) smallest value is 7.0 | |
The 18-th(-st) smallest value is 8.0 | |
The 19-th(-st) smallest value is 9.0 | |
The 20-th(-st) smallest value is 10.0 | |
Order real values | |
The 1-th(-st) smallest value, a(18) is -9.0 | |
The 2-th(-st) smallest value, a(14) is -8.0 | |
The 3-th(-st) smallest value, a( 2) is -7.0 | |
The 4-th(-st) smallest value, a(10) is -6.0 | |
The 5-th(-st) smallest value, a( 1) is -5.0 | |
The 6-th(-st) smallest value, a(16) is -4.0 | |
The 7-th(-st) smallest value, a( 6) is -3.0 | |
The 8-th(-st) smallest value, a( 9) is -2.0 | |
The 9-th(-st) smallest value, a(13) is -1.0 | |
The 10-th(-st) smallest value, a( 5) is 0.0 | |
The 11-th(-st) smallest value, a(19) is 1.0 | |
The 12-th(-st) smallest value, a( 3) is 2.0 | |
The 13-th(-st) smallest value, a( 7) is 3.0 | |
The 14-th(-st) smallest value, a(20) is 4.0 | |
The 15-th(-st) smallest value, a( 8) is 5.0 | |
The 16-th(-st) smallest value, a(17) is 6.0 | |
The 17-th(-st) smallest value, a(12) is 7.0 | |
The 18-th(-st) smallest value, a(11) is 8.0 | |
The 19-th(-st) smallest value, a( 4) is 9.0 | |
The 20-th(-st) smallest value, a(15) is 10.0 | |
Order integer values | |
The 1-th(-st) smallest value is -9 | |
The 2-th(-st) smallest value is -8 | |
The 3-th(-st) smallest value is -7 | |
The 4-th(-st) smallest value is -6 | |
The 5-th(-st) smallest value is -5 | |
The 6-th(-st) smallest value is -4 | |
The 7-th(-st) smallest value is -3 | |
The 8-th(-st) smallest value is -2 | |
The 9-th(-st) smallest value is -1 | |
The 10-th(-st) smallest value is 0 | |
The 11-th(-st) smallest value is 1 | |
The 12-th(-st) smallest value is 2 | |
The 13-th(-st) smallest value is 3 | |
The 14-th(-st) smallest value is 4 | |
The 15-th(-st) smallest value is 5 | |
The 16-th(-st) smallest value is 6 | |
The 17-th(-st) smallest value is 7 | |
The 18-th(-st) smallest value is 8 | |
The 19-th(-st) smallest value is 9 | |
The 20-th(-st) smallest value is 10 | |
Order integer values | |
The 1-th(-st) smallest value, a(18) is -9 | |
The 2-th(-st) smallest value, a(14) is -8 | |
The 3-th(-st) smallest value, a( 2) is -7 | |
The 4-th(-st) smallest value, a(10) is -6 | |
The 5-th(-st) smallest value, a( 1) is -5 | |
The 6-th(-st) smallest value, a(16) is -4 | |
The 7-th(-st) smallest value, a( 6) is -3 | |
The 8-th(-st) smallest value, a( 9) is -2 | |
The 9-th(-st) smallest value, a(13) is -1 | |
The 10-th(-st) smallest value, a( 5) is 0 | |
The 11-th(-st) smallest value, a(19) is 1 | |
The 12-th(-st) smallest value, a( 3) is 2 | |
The 13-th(-st) smallest value, a( 7) is 3 | |
The 14-th(-st) smallest value, a(20) is 4 | |
The 15-th(-st) smallest value, a( 8) is 5 | |
The 16-th(-st) smallest value, a(17) is 6 | |
The 17-th(-st) smallest value, a(12) is 7 | |
The 18-th(-st) smallest value, a(11) is 8 | |
The 19-th(-st) smallest value, a( 4) is 9 | |
The 20-th(-st) smallest value, a(15) is 10 | |
Arrange real values in decreasing order | |
The 1-th(-st) smallest value is 10.0 | |
The 2-th(-st) smallest value is 9.0 | |
The 3-th(-st) smallest value is 8.0 | |
The 4-th(-st) smallest value is 7.0 | |
The 5-th(-st) smallest value is 6.0 | |
The 6-th(-st) smallest value is 5.0 | |
The 7-th(-st) smallest value is 4.0 | |
The 8-th(-st) smallest value is 3.0 | |
The 9-th(-st) smallest value is 2.0 | |
The 10-th(-st) smallest value is 1.0 | |
The 11-th(-st) smallest value is 0.0 | |
The 12-th(-st) smallest value is -1.0 | |
The 13-th(-st) smallest value is -2.0 | |
The 14-th(-st) smallest value is -3.0 | |
The 15-th(-st) smallest value is -4.0 | |
The 16-th(-st) smallest value is -5.0 | |
The 17-th(-st) smallest value is -6.0 | |
The 18-th(-st) smallest value is -7.0 | |
The 19-th(-st) smallest value is -8.0 | |
The 20-th(-st) smallest value is -9.0 | |
Arrange real values in decreasing order | |
The 1-th(-st) smallest value, a(15) is 10.0 | |
The 2-th(-st) smallest value, a( 4) is 9.0 | |
The 3-th(-st) smallest value, a(11) is 8.0 | |
The 4-th(-st) smallest value, a(12) is 7.0 | |
The 5-th(-st) smallest value, a(17) is 6.0 | |
The 6-th(-st) smallest value, a( 8) is 5.0 | |
The 7-th(-st) smallest value, a(20) is 4.0 | |
The 8-th(-st) smallest value, a( 7) is 3.0 | |
The 9-th(-st) smallest value, a( 3) is 2.0 | |
The 10-th(-st) smallest value, a(19) is 1.0 | |
The 11-th(-st) smallest value, a( 5) is 0.0 | |
The 12-th(-st) smallest value, a(13) is -1.0 | |
The 13-th(-st) smallest value, a( 9) is -2.0 | |
The 14-th(-st) smallest value, a( 6) is -3.0 | |
The 15-th(-st) smallest value, a(16) is -4.0 | |
The 16-th(-st) smallest value, a( 1) is -5.0 | |
The 17-th(-st) smallest value, a(10) is -6.0 | |
The 18-th(-st) smallest value, a( 2) is -7.0 | |
The 19-th(-st) smallest value, a(14) is -8.0 | |
The 20-th(-st) smallest value, a(18) is -9.0 | |
Arrange integer values in decreasing order | |
The 1-th(-st) smallest value is 10 | |
The 2-th(-st) smallest value is 9 | |
The 3-th(-st) smallest value is 8 | |
The 4-th(-st) smallest value is 7 | |
The 5-th(-st) smallest value is 6 | |
The 6-th(-st) smallest value is 5 | |
The 7-th(-st) smallest value is 4 | |
The 8-th(-st) smallest value is 3 | |
The 9-th(-st) smallest value is 2 | |
The 10-th(-st) smallest value is 1 | |
The 11-th(-st) smallest value is 0 | |
The 12-th(-st) smallest value is -1 | |
The 13-th(-st) smallest value is -2 | |
The 14-th(-st) smallest value is -3 | |
The 15-th(-st) smallest value is -4 | |
The 16-th(-st) smallest value is -5 | |
The 17-th(-st) smallest value is -6 | |
The 18-th(-st) smallest value is -7 | |
The 19-th(-st) smallest value is -8 | |
The 20-th(-st) smallest value is -9 | |
Arrange integer values in decreasing order | |
The 1-th(-st) smallest value, a(15) is 10 | |
The 2-th(-st) smallest value, a( 4) is 9 | |
The 3-th(-st) smallest value, a(11) is 8 | |
The 4-th(-st) smallest value, a(12) is 7 | |
The 5-th(-st) smallest value, a(17) is 6 | |
The 6-th(-st) smallest value, a( 8) is 5 | |
The 7-th(-st) smallest value, a(20) is 4 | |
The 8-th(-st) smallest value, a( 7) is 3 | |
The 9-th(-st) smallest value, a( 3) is 2 | |
The 10-th(-st) smallest value, a(19) is 1 | |
The 11-th(-st) smallest value, a( 5) is 0 | |
The 12-th(-st) smallest value, a(13) is -1 | |
The 13-th(-st) smallest value, a( 9) is -2 | |
The 14-th(-st) smallest value, a( 6) is -3 | |
The 15-th(-st) smallest value, a(16) is -4 | |
The 16-th(-st) smallest value, a( 1) is -5 | |
The 17-th(-st) smallest value, a(10) is -6 | |
The 18-th(-st) smallest value, a( 2) is -7 | |
The 19-th(-st) smallest value, a(14) is -8 | |
The 20-th(-st) smallest value, a(18) is -9 | |
============================================================================== | |
=================================== 20/637 =================================== | |
test: GALAHAD:sort+double+fortran / sortt_double | |
start time: 13:30:19 | |
duration: 0.05s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 MALLOC_PERTURB_=194 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/sortt_double | |
----------------------------------- stdout ----------------------------------- | |
Test error returns | |
inform = 1 | |
inform = 1 | |
Order real values | |
The 1-th(-st) smallest value is -9.0 | |
The 2-th(-st) smallest value is -8.0 | |
The 3-th(-st) smallest value is -7.0 | |
The 4-th(-st) smallest value is -6.0 | |
The 5-th(-st) smallest value is -5.0 | |
The 6-th(-st) smallest value is -4.0 | |
The 7-th(-st) smallest value is -3.0 | |
The 8-th(-st) smallest value is -2.0 | |
The 9-th(-st) smallest value is -1.0 | |
The 10-th(-st) smallest value is 0.0 | |
The 11-th(-st) smallest value is 1.0 | |
The 12-th(-st) smallest value is 2.0 | |
The 13-th(-st) smallest value is 3.0 | |
The 14-th(-st) smallest value is 4.0 | |
The 15-th(-st) smallest value is 5.0 | |
The 16-th(-st) smallest value is 6.0 | |
The 17-th(-st) smallest value is 7.0 | |
The 18-th(-st) smallest value is 8.0 | |
The 19-th(-st) smallest value is 9.0 | |
The 20-th(-st) smallest value is 10.0 | |
Order real values | |
The 1-th(-st) smallest value, a(18) is -9.0 | |
The 2-th(-st) smallest value, a(14) is -8.0 | |
The 3-th(-st) smallest value, a( 2) is -7.0 | |
The 4-th(-st) smallest value, a(10) is -6.0 | |
The 5-th(-st) smallest value, a( 1) is -5.0 | |
The 6-th(-st) smallest value, a(16) is -4.0 | |
The 7-th(-st) smallest value, a( 6) is -3.0 | |
The 8-th(-st) smallest value, a( 9) is -2.0 | |
The 9-th(-st) smallest value, a(13) is -1.0 | |
The 10-th(-st) smallest value, a( 5) is 0.0 | |
The 11-th(-st) smallest value, a(19) is 1.0 | |
The 12-th(-st) smallest value, a( 3) is 2.0 | |
The 13-th(-st) smallest value, a( 7) is 3.0 | |
The 14-th(-st) smallest value, a(20) is 4.0 | |
The 15-th(-st) smallest value, a( 8) is 5.0 | |
The 16-th(-st) smallest value, a(17) is 6.0 | |
The 17-th(-st) smallest value, a(12) is 7.0 | |
The 18-th(-st) smallest value, a(11) is 8.0 | |
The 19-th(-st) smallest value, a( 4) is 9.0 | |
The 20-th(-st) smallest value, a(15) is 10.0 | |
Order integer values | |
The 1-th(-st) smallest value is -9 | |
The 2-th(-st) smallest value is -8 | |
The 3-th(-st) smallest value is -7 | |
The 4-th(-st) smallest value is -6 | |
The 5-th(-st) smallest value is -5 | |
The 6-th(-st) smallest value is -4 | |
The 7-th(-st) smallest value is -3 | |
The 8-th(-st) smallest value is -2 | |
The 9-th(-st) smallest value is -1 | |
The 10-th(-st) smallest value is 0 | |
The 11-th(-st) smallest value is 1 | |
The 12-th(-st) smallest value is 2 | |
The 13-th(-st) smallest value is 3 | |
The 14-th(-st) smallest value is 4 | |
The 15-th(-st) smallest value is 5 | |
The 16-th(-st) smallest value is 6 | |
The 17-th(-st) smallest value is 7 | |
The 18-th(-st) smallest value is 8 | |
The 19-th(-st) smallest value is 9 | |
The 20-th(-st) smallest value is 10 | |
Order integer values | |
The 1-th(-st) smallest value, a(18) is -9 | |
The 2-th(-st) smallest value, a(14) is -8 | |
The 3-th(-st) smallest value, a( 2) is -7 | |
The 4-th(-st) smallest value, a(10) is -6 | |
The 5-th(-st) smallest value, a( 1) is -5 | |
The 6-th(-st) smallest value, a(16) is -4 | |
The 7-th(-st) smallest value, a( 6) is -3 | |
The 8-th(-st) smallest value, a( 9) is -2 | |
The 9-th(-st) smallest value, a(13) is -1 | |
The 10-th(-st) smallest value, a( 5) is 0 | |
The 11-th(-st) smallest value, a(19) is 1 | |
The 12-th(-st) smallest value, a( 3) is 2 | |
The 13-th(-st) smallest value, a( 7) is 3 | |
The 14-th(-st) smallest value, a(20) is 4 | |
The 15-th(-st) smallest value, a( 8) is 5 | |
The 16-th(-st) smallest value, a(17) is 6 | |
The 17-th(-st) smallest value, a(12) is 7 | |
The 18-th(-st) smallest value, a(11) is 8 | |
The 19-th(-st) smallest value, a( 4) is 9 | |
The 20-th(-st) smallest value, a(15) is 10 | |
Arrange real values in decreasing order | |
The 1-th(-st) smallest value is 10.0 | |
The 2-th(-st) smallest value is 9.0 | |
The 3-th(-st) smallest value is 8.0 | |
The 4-th(-st) smallest value is 7.0 | |
The 5-th(-st) smallest value is 6.0 | |
The 6-th(-st) smallest value is 5.0 | |
The 7-th(-st) smallest value is 4.0 | |
The 8-th(-st) smallest value is 3.0 | |
The 9-th(-st) smallest value is 2.0 | |
The 10-th(-st) smallest value is 1.0 | |
The 11-th(-st) smallest value is 0.0 | |
The 12-th(-st) smallest value is -1.0 | |
The 13-th(-st) smallest value is -2.0 | |
The 14-th(-st) smallest value is -3.0 | |
The 15-th(-st) smallest value is -4.0 | |
The 16-th(-st) smallest value is -5.0 | |
The 17-th(-st) smallest value is -6.0 | |
The 18-th(-st) smallest value is -7.0 | |
The 19-th(-st) smallest value is -8.0 | |
The 20-th(-st) smallest value is -9.0 | |
Arrange real values in decreasing order | |
The 1-th(-st) smallest value, a(15) is 10.0 | |
The 2-th(-st) smallest value, a( 4) is 9.0 | |
The 3-th(-st) smallest value, a(11) is 8.0 | |
The 4-th(-st) smallest value, a(12) is 7.0 | |
The 5-th(-st) smallest value, a(17) is 6.0 | |
The 6-th(-st) smallest value, a( 8) is 5.0 | |
The 7-th(-st) smallest value, a(20) is 4.0 | |
The 8-th(-st) smallest value, a( 7) is 3.0 | |
The 9-th(-st) smallest value, a( 3) is 2.0 | |
The 10-th(-st) smallest value, a(19) is 1.0 | |
The 11-th(-st) smallest value, a( 5) is 0.0 | |
The 12-th(-st) smallest value, a(13) is -1.0 | |
The 13-th(-st) smallest value, a( 9) is -2.0 | |
The 14-th(-st) smallest value, a( 6) is -3.0 | |
The 15-th(-st) smallest value, a(16) is -4.0 | |
The 16-th(-st) smallest value, a( 1) is -5.0 | |
The 17-th(-st) smallest value, a(10) is -6.0 | |
The 18-th(-st) smallest value, a( 2) is -7.0 | |
The 19-th(-st) smallest value, a(14) is -8.0 | |
The 20-th(-st) smallest value, a(18) is -9.0 | |
Arrange integer values in decreasing order | |
The 1-th(-st) smallest value is 10 | |
The 2-th(-st) smallest value is 9 | |
The 3-th(-st) smallest value is 8 | |
The 4-th(-st) smallest value is 7 | |
The 5-th(-st) smallest value is 6 | |
The 6-th(-st) smallest value is 5 | |
The 7-th(-st) smallest value is 4 | |
The 8-th(-st) smallest value is 3 | |
The 9-th(-st) smallest value is 2 | |
The 10-th(-st) smallest value is 1 | |
The 11-th(-st) smallest value is 0 | |
The 12-th(-st) smallest value is -1 | |
The 13-th(-st) smallest value is -2 | |
The 14-th(-st) smallest value is -3 | |
The 15-th(-st) smallest value is -4 | |
The 16-th(-st) smallest value is -5 | |
The 17-th(-st) smallest value is -6 | |
The 18-th(-st) smallest value is -7 | |
The 19-th(-st) smallest value is -8 | |
The 20-th(-st) smallest value is -9 | |
Arrange integer values in decreasing order | |
The 1-th(-st) smallest value, a(15) is 10 | |
The 2-th(-st) smallest value, a( 4) is 9 | |
The 3-th(-st) smallest value, a(11) is 8 | |
The 4-th(-st) smallest value, a(12) is 7 | |
The 5-th(-st) smallest value, a(17) is 6 | |
The 6-th(-st) smallest value, a( 8) is 5 | |
The 7-th(-st) smallest value, a(20) is 4 | |
The 8-th(-st) smallest value, a( 7) is 3 | |
The 9-th(-st) smallest value, a( 3) is 2 | |
The 10-th(-st) smallest value, a(19) is 1 | |
The 11-th(-st) smallest value, a( 5) is 0 | |
The 12-th(-st) smallest value, a(13) is -1 | |
The 13-th(-st) smallest value, a( 9) is -2 | |
The 14-th(-st) smallest value, a( 6) is -3 | |
The 15-th(-st) smallest value, a(16) is -4 | |
The 16-th(-st) smallest value, a( 1) is -5 | |
The 17-th(-st) smallest value, a(10) is -6 | |
The 18-th(-st) smallest value, a( 2) is -7 | |
The 19-th(-st) smallest value, a(14) is -8 | |
The 20-th(-st) smallest value, a(18) is -9 | |
============================================================================== | |
=================================== 21/637 =================================== | |
test: GALAHAD:sort+quadruple+fortran / sortt_quadruple | |
start time: 13:30:19 | |
duration: 0.01s | |
result: exit status 0 | |
command: MALLOC_PERTURB_=253 LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/sortt_quadruple | |
----------------------------------- stdout ----------------------------------- | |
Test error returns | |
inform = 1 | |
inform = 1 | |
Order real values | |
The 1-th(-st) smallest value is -9.0 | |
The 2-th(-st) smallest value is -8.0 | |
The 3-th(-st) smallest value is -7.0 | |
The 4-th(-st) smallest value is -6.0 | |
The 5-th(-st) smallest value is -5.0 | |
The 6-th(-st) smallest value is -4.0 | |
The 7-th(-st) smallest value is -3.0 | |
The 8-th(-st) smallest value is -2.0 | |
The 9-th(-st) smallest value is -1.0 | |
The 10-th(-st) smallest value is 0.0 | |
The 11-th(-st) smallest value is 1.0 | |
The 12-th(-st) smallest value is 2.0 | |
The 13-th(-st) smallest value is 3.0 | |
The 14-th(-st) smallest value is 4.0 | |
The 15-th(-st) smallest value is 5.0 | |
The 16-th(-st) smallest value is 6.0 | |
The 17-th(-st) smallest value is 7.0 | |
The 18-th(-st) smallest value is 8.0 | |
The 19-th(-st) smallest value is 9.0 | |
The 20-th(-st) smallest value is 10.0 | |
Order real values | |
The 1-th(-st) smallest value, a(18) is -9.0 | |
The 2-th(-st) smallest value, a(14) is -8.0 | |
The 3-th(-st) smallest value, a( 2) is -7.0 | |
The 4-th(-st) smallest value, a(10) is -6.0 | |
The 5-th(-st) smallest value, a( 1) is -5.0 | |
The 6-th(-st) smallest value, a(16) is -4.0 | |
The 7-th(-st) smallest value, a( 6) is -3.0 | |
The 8-th(-st) smallest value, a( 9) is -2.0 | |
The 9-th(-st) smallest value, a(13) is -1.0 | |
The 10-th(-st) smallest value, a( 5) is 0.0 | |
The 11-th(-st) smallest value, a(19) is 1.0 | |
The 12-th(-st) smallest value, a( 3) is 2.0 | |
The 13-th(-st) smallest value, a( 7) is 3.0 | |
The 14-th(-st) smallest value, a(20) is 4.0 | |
The 15-th(-st) smallest value, a( 8) is 5.0 | |
The 16-th(-st) smallest value, a(17) is 6.0 | |
The 17-th(-st) smallest value, a(12) is 7.0 | |
The 18-th(-st) smallest value, a(11) is 8.0 | |
The 19-th(-st) smallest value, a( 4) is 9.0 | |
The 20-th(-st) smallest value, a(15) is 10.0 | |
Order integer values | |
The 1-th(-st) smallest value is -9 | |
The 2-th(-st) smallest value is -8 | |
The 3-th(-st) smallest value is -7 | |
The 4-th(-st) smallest value is -6 | |
The 5-th(-st) smallest value is -5 | |
The 6-th(-st) smallest value is -4 | |
The 7-th(-st) smallest value is -3 | |
The 8-th(-st) smallest value is -2 | |
The 9-th(-st) smallest value is -1 | |
The 10-th(-st) smallest value is 0 | |
The 11-th(-st) smallest value is 1 | |
The 12-th(-st) smallest value is 2 | |
The 13-th(-st) smallest value is 3 | |
The 14-th(-st) smallest value is 4 | |
The 15-th(-st) smallest value is 5 | |
The 16-th(-st) smallest value is 6 | |
The 17-th(-st) smallest value is 7 | |
The 18-th(-st) smallest value is 8 | |
The 19-th(-st) smallest value is 9 | |
The 20-th(-st) smallest value is 10 | |
Order integer values | |
The 1-th(-st) smallest value, a(18) is -9 | |
The 2-th(-st) smallest value, a(14) is -8 | |
The 3-th(-st) smallest value, a( 2) is -7 | |
The 4-th(-st) smallest value, a(10) is -6 | |
The 5-th(-st) smallest value, a( 1) is -5 | |
The 6-th(-st) smallest value, a(16) is -4 | |
The 7-th(-st) smallest value, a( 6) is -3 | |
The 8-th(-st) smallest value, a( 9) is -2 | |
The 9-th(-st) smallest value, a(13) is -1 | |
The 10-th(-st) smallest value, a( 5) is 0 | |
The 11-th(-st) smallest value, a(19) is 1 | |
The 12-th(-st) smallest value, a( 3) is 2 | |
The 13-th(-st) smallest value, a( 7) is 3 | |
The 14-th(-st) smallest value, a(20) is 4 | |
The 15-th(-st) smallest value, a( 8) is 5 | |
The 16-th(-st) smallest value, a(17) is 6 | |
The 17-th(-st) smallest value, a(12) is 7 | |
The 18-th(-st) smallest value, a(11) is 8 | |
The 19-th(-st) smallest value, a( 4) is 9 | |
The 20-th(-st) smallest value, a(15) is 10 | |
Arrange real values in decreasing order | |
The 1-th(-st) smallest value is 10.0 | |
The 2-th(-st) smallest value is 9.0 | |
The 3-th(-st) smallest value is 8.0 | |
The 4-th(-st) smallest value is 7.0 | |
The 5-th(-st) smallest value is 6.0 | |
The 6-th(-st) smallest value is 5.0 | |
The 7-th(-st) smallest value is 4.0 | |
The 8-th(-st) smallest value is 3.0 | |
The 9-th(-st) smallest value is 2.0 | |
The 10-th(-st) smallest value is 1.0 | |
The 11-th(-st) smallest value is 0.0 | |
The 12-th(-st) smallest value is -1.0 | |
The 13-th(-st) smallest value is -2.0 | |
The 14-th(-st) smallest value is -3.0 | |
The 15-th(-st) smallest value is -4.0 | |
The 16-th(-st) smallest value is -5.0 | |
The 17-th(-st) smallest value is -6.0 | |
The 18-th(-st) smallest value is -7.0 | |
The 19-th(-st) smallest value is -8.0 | |
The 20-th(-st) smallest value is -9.0 | |
Arrange real values in decreasing order | |
The 1-th(-st) smallest value, a(15) is 10.0 | |
The 2-th(-st) smallest value, a( 4) is 9.0 | |
The 3-th(-st) smallest value, a(11) is 8.0 | |
The 4-th(-st) smallest value, a(12) is 7.0 | |
The 5-th(-st) smallest value, a(17) is 6.0 | |
The 6-th(-st) smallest value, a( 8) is 5.0 | |
The 7-th(-st) smallest value, a(20) is 4.0 | |
The 8-th(-st) smallest value, a( 7) is 3.0 | |
The 9-th(-st) smallest value, a( 3) is 2.0 | |
The 10-th(-st) smallest value, a(19) is 1.0 | |
The 11-th(-st) smallest value, a( 5) is 0.0 | |
The 12-th(-st) smallest value, a(13) is -1.0 | |
The 13-th(-st) smallest value, a( 9) is -2.0 | |
The 14-th(-st) smallest value, a( 6) is -3.0 | |
The 15-th(-st) smallest value, a(16) is -4.0 | |
The 16-th(-st) smallest value, a( 1) is -5.0 | |
The 17-th(-st) smallest value, a(10) is -6.0 | |
The 18-th(-st) smallest value, a( 2) is -7.0 | |
The 19-th(-st) smallest value, a(14) is -8.0 | |
The 20-th(-st) smallest value, a(18) is -9.0 | |
Arrange integer values in decreasing order | |
The 1-th(-st) smallest value is 10 | |
The 2-th(-st) smallest value is 9 | |
The 3-th(-st) smallest value is 8 | |
The 4-th(-st) smallest value is 7 | |
The 5-th(-st) smallest value is 6 | |
The 6-th(-st) smallest value is 5 | |
The 7-th(-st) smallest value is 4 | |
The 8-th(-st) smallest value is 3 | |
The 9-th(-st) smallest value is 2 | |
The 10-th(-st) smallest value is 1 | |
The 11-th(-st) smallest value is 0 | |
The 12-th(-st) smallest value is -1 | |
The 13-th(-st) smallest value is -2 | |
The 14-th(-st) smallest value is -3 | |
The 15-th(-st) smallest value is -4 | |
The 16-th(-st) smallest value is -5 | |
The 17-th(-st) smallest value is -6 | |
The 18-th(-st) smallest value is -7 | |
The 19-th(-st) smallest value is -8 | |
The 20-th(-st) smallest value is -9 | |
Arrange integer values in decreasing order | |
The 1-th(-st) smallest value, a(15) is 10 | |
The 2-th(-st) smallest value, a( 4) is 9 | |
The 3-th(-st) smallest value, a(11) is 8 | |
The 4-th(-st) smallest value, a(12) is 7 | |
The 5-th(-st) smallest value, a(17) is 6 | |
The 6-th(-st) smallest value, a( 8) is 5 | |
The 7-th(-st) smallest value, a(20) is 4 | |
The 8-th(-st) smallest value, a( 7) is 3 | |
The 9-th(-st) smallest value, a( 3) is 2 | |
The 10-th(-st) smallest value, a(19) is 1 | |
The 11-th(-st) smallest value, a( 5) is 0 | |
The 12-th(-st) smallest value, a(13) is -1 | |
The 13-th(-st) smallest value, a( 9) is -2 | |
The 14-th(-st) smallest value, a( 6) is -3 | |
The 15-th(-st) smallest value, a(16) is -4 | |
The 16-th(-st) smallest value, a( 1) is -5 | |
The 17-th(-st) smallest value, a(10) is -6 | |
The 18-th(-st) smallest value, a( 2) is -7 | |
The 19-th(-st) smallest value, a(14) is -8 | |
The 20-th(-st) smallest value, a(18) is -9 | |
============================================================================== | |
=================================== 22/637 =================================== | |
test: GALAHAD:amd+single+fortran / amdt_single | |
start time: 13:30:19 | |
duration: 0.01s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 MALLOC_PERTURB_=97 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/amdt_single | |
----------------------------------- stdout ----------------------------------- | |
Aggressive absorption | |
AMD: permutation = | |
4 1 3 5 2 | |
Non-aggressive absorption | |
AMD: permutation = | |
4 1 5 2 3 | |
============================================================================== | |
=================================== 23/637 =================================== | |
test: GALAHAD:amd+double+fortran / amdt_double | |
start time: 13:30:19 | |
duration: 0.04s | |
result: exit status 0 | |
command: MALLOC_PERTURB_=83 LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/amdt_double | |
----------------------------------- stdout ----------------------------------- | |
Aggressive absorption | |
AMD: permutation = | |
4 1 3 5 2 | |
Non-aggressive absorption | |
AMD: permutation = | |
4 1 5 2 3 | |
============================================================================== | |
=================================== 24/637 =================================== | |
test: GALAHAD:amd+quadruple+fortran / amdt_quadruple | |
start time: 13:30:19 | |
duration: 0.01s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=218 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/amdt_quadruple | |
----------------------------------- stdout ----------------------------------- | |
Aggressive absorption | |
AMD: permutation = | |
4 1 3 5 2 | |
Non-aggressive absorption | |
AMD: permutation = | |
4 1 5 2 3 | |
============================================================================== | |
=================================== 25/637 =================================== | |
test: GALAHAD:arc+single+fortran / arct_single | |
start time: 13:30:19 | |
duration: 0.24s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MALLOC_PERTURB_=249 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/arct_single | |
----------------------------------- stdout ----------------------------------- | |
error exit tests | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: ARC_solve exit status = -3 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
7: ARC_solve exit status = -7 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
15: ARC_solve exit status = -15 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
18: ARC_solve exit status = -18 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
19: ARC_solve exit status = -19 | |
test of availible options | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1: 6 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
2: 7 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: ARC_solve exit status = -18 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: 13 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
5: 6 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
Error return from ARC_solve - | |
the iteration limit has been exceeded | |
6: ARC_solve exit status = -18 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
Error return from ARC_solve - | |
the iteration limit has been exceeded | |
7: ARC_solve exit status = -18 | |
full test of generic problems | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1: 6 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
2: 6 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: 7 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: 6 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
5: 6 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
6: 7 iterations. Optimal objective value = -1.0 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 26/637 =================================== | |
test: GALAHAD:arc+double+fortran / arct_double | |
start time: 13:30:19 | |
duration: 0.20s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MALLOC_PERTURB_=36 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/arct_double | |
----------------------------------- stdout ----------------------------------- | |
error exit tests | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: ARC_solve exit status = -3 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
7: ARC_solve exit status = -7 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
15: ARC_solve exit status = -15 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
18: ARC_solve exit status = -18 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
19: ARC_solve exit status = -19 | |
test of availible options | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1: 7 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
2: 9 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: 183 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: 14 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
5: 7 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
6: 104 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
7: 192 iterations. Optimal objective value = -1.0 status = 0 | |
full test of generic problems | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1: 7 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
2: 7 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: 8 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: 7 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
5: 7 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
6: 8 iterations. Optimal objective value = -1.0 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 27/637 =================================== | |
test: GALAHAD:arc+quadruple+fortran / arct_quadruple | |
start time: 13:30:19 | |
duration: 2.09s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 MALLOC_PERTURB_=21 /home/orban/dev/ralna/src/GALAHAD/builddir/arct_quadruple | |
----------------------------------- stdout ----------------------------------- | |
error exit tests | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: ARC_solve exit status = -3 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
7: ARC_solve exit status = -7 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
15: ARC_solve exit status = -15 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
18: ARC_solve exit status = -18 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
19: ARC_solve exit status = -19 | |
test of availible options | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1: 7 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
2: 10 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: 183 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: 14 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
5: 7 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
6: 104 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
7: 192 iterations. Optimal objective value = -1.0 status = 0 | |
full test of generic problems | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1: 7 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
2: 7 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: 8 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: 7 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
5: 7 iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
6: 8 iterations. Optimal objective value = -1.0 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 28/637 =================================== | |
test: GALAHAD:arc+single+fortran / arcti_single | |
start time: 13:30:21 | |
duration: 0.08s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=15 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/arcti_single | |
----------------------------------- stdout ----------------------------------- | |
basic tests of storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C: 7 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R: 7 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D: 7 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I: 10 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
P: 7 iterations. Optimal objective value = -1.00 status = 0 | |
tests reverse-communication options | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C: 7 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R: 7 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D: 7 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I: 10 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
P: 7 iterations. Optimal objective value = -1.00 status = 0 | |
============================================================================== | |
=================================== 29/637 =================================== | |
test: GALAHAD:arc+double+fortran / arcti_double | |
start time: 13:30:21 | |
duration: 0.05s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MALLOC_PERTURB_=138 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/arcti_double | |
----------------------------------- stdout ----------------------------------- | |
basic tests of storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C: 8 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R: 8 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D: 8 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I: 7 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
P: 8 iterations. Optimal objective value = -1.00 status = 0 | |
tests reverse-communication options | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C: 8 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R: 8 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D: 8 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I: 7 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
P: 8 iterations. Optimal objective value = -1.00 status = 0 | |
============================================================================== | |
=================================== 30/637 =================================== | |
test: GALAHAD:arc+quadruple+fortran / arcti_quadruple | |
start time: 13:30:21 | |
duration: 0.05s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MALLOC_PERTURB_=117 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/arcti_quadruple | |
----------------------------------- stdout ----------------------------------- | |
basic tests of storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C: 8 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R: 8 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D: 8 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I: 7 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
P: 8 iterations. Optimal objective value = -1.00 status = 0 | |
tests reverse-communication options | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C: 8 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R: 8 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D: 8 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I: 7 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
P: 8 iterations. Optimal objective value = -1.00 status = 0 | |
============================================================================== | |
=================================== 31/637 =================================== | |
test: GALAHAD:bgo+single+fortran / bgot_single | |
start time: 13:30:21 | |
duration: 0.19s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MALLOC_PERTURB_=75 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bgot_single | |
----------------------------------- stdout ----------------------------------- | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BGO: 2 iterations - | |
Best objective value found = -1.0049E+03 | |
Corresponding solution = -4.7124E+00 -1.0000E+00 5.0000E-01 | |
tests completed | |
============================================================================== | |
=================================== 32/637 =================================== | |
test: GALAHAD:bgo+double+fortran / bgot_double | |
start time: 13:30:22 | |
duration: 0.15s | |
result: exit status 0 | |
command: MALLOC_PERTURB_=89 LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bgot_double | |
----------------------------------- stdout ----------------------------------- | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BGO: 2 iterations - | |
Best objective value found = -1.0049E+03 | |
Corresponding solution = -4.7124E+00 -1.0000E+00 5.0000E-01 | |
tests completed | |
============================================================================== | |
=================================== 33/637 =================================== | |
test: GALAHAD:bgo+quadruple+fortran / bgot_quadruple | |
start time: 13:30:22 | |
duration: 0.67s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MALLOC_PERTURB_=144 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bgot_quadruple | |
----------------------------------- stdout ----------------------------------- | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BGO: 2 iterations - | |
Best objective value found = -1.0049E+03 | |
Corresponding solution = -4.7124E+00 -1.0000E+00 5.0000E-01 | |
tests completed | |
============================================================================== | |
=================================== 34/637 =================================== | |
test: GALAHAD:bgo+single+fortran / bgoti_single | |
start time: 13:30:22 | |
duration: 1.33s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 MALLOC_PERTURB_=21 /home/orban/dev/ralna/src/GALAHAD/builddir/bgoti_single | |
----------------------------------- stdout ----------------------------------- | |
basic tests of storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C: 20001 evaluations. Best objective value found = -1004.92 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R: 20001 evaluations. Best objective value found = -1004.92 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D: 20001 evaluations. Best objective value found = -1004.92 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I: 20001 evaluations. Best objective value found = -1014.24 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
P: 20001 evaluations. Best objective value found = -1004.92 status = 0 | |
tests reverse-communication options | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C: 20001 evaluations. Best objective value found = -1004.92 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R: 20001 evaluations. Best objective value found = -1004.92 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D: 20001 evaluations. Best objective value found = -1004.92 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I: 20001 evaluations. Best objective value found = -1014.24 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
P: 20001 evaluations. Best objective value found = -1004.92 status = 0 | |
============================================================================== | |
=================================== 35/637 =================================== | |
test: GALAHAD:bgo+double+fortran / bgoti_double | |
start time: 13:30:24 | |
duration: 1.34s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MALLOC_PERTURB_=134 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bgoti_double | |
----------------------------------- stdout ----------------------------------- | |
basic tests of storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C: 20001 evaluations. Best objective value found = -1004.92 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R: 20001 evaluations. Best objective value found = -1004.92 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D: 20001 evaluations. Best objective value found = -1004.92 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I: 20001 evaluations. Best objective value found = -1014.24 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
P: 20001 evaluations. Best objective value found = -1004.92 status = 0 | |
tests reverse-communication options | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C: 20001 evaluations. Best objective value found = -1004.92 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R: 20001 evaluations. Best objective value found = -1004.92 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D: 20001 evaluations. Best objective value found = -1004.92 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I: 20001 evaluations. Best objective value found = -1014.24 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
P: 20001 evaluations. Best objective value found = -1004.92 status = 0 | |
============================================================================== | |
=================================== 36/637 =================================== | |
test: GALAHAD:bgo+quadruple+fortran / bgoti_quadruple | |
start time: 13:30:25 | |
duration: 9.20s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=28 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bgoti_quadruple | |
----------------------------------- stdout ----------------------------------- | |
basic tests of storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C: 20001 evaluations. Best objective value found = -1004.92 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R: 20001 evaluations. Best objective value found = -1004.92 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D: 20001 evaluations. Best objective value found = -1004.92 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I: 20001 evaluations. Best objective value found = -1014.24 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
P: 20001 evaluations. Best objective value found = -1004.92 status = 0 | |
tests reverse-communication options | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C: 20001 evaluations. Best objective value found = -1004.92 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R: 20001 evaluations. Best objective value found = -1004.92 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D: 20001 evaluations. Best objective value found = -1004.92 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I: 20001 evaluations. Best objective value found = -1014.24 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
P: 20001 evaluations. Best objective value found = -1004.92 status = 0 | |
============================================================================== | |
=================================== 37/637 =================================== | |
test: GALAHAD:blls+single+fortran / bllst_single | |
start time: 13:30:34 | |
duration: 0.04s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=236 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bllst_single | |
----------------------------------- stdout ----------------------------------- | |
run tests (weight = 0) | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 1, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 2, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 3, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 4, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 5, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 6, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 1, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 2, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 3, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 4, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 5, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 6, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 1, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 2, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 3, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 4, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 5, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 6, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 1, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 2, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 3, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 4, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 5, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 6, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 1, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 2, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 3, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 4, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 5, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 1, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 2, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 3, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 4, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 5, search = 1, status = 0, objective = 0.5000 | |
run tests (weight = 1) | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 1, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 2, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 3, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 4, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 5, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 6, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 1, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 2, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 3, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 4, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 5, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 6, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 1, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 2, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 3, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 4, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 5, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 6, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 1, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 2, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 3, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 4, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 5, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 6, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 1, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 2, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 3, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 4, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 5, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 1, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 2, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 3, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 4, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 5, search = 1, status = 0, objective = 1.8000 | |
error exit tests | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve exit status = -3 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve exit status = -4 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve exit status = -18 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve exit status = -19 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve exit status = -78 | |
BLLS_solve exit status = -78 | |
BLLS_solve exit status = -78 | |
tests completed | |
============================================================================== | |
=================================== 38/637 =================================== | |
test: GALAHAD:blls+double+fortran / bllst_double | |
start time: 13:30:34 | |
duration: 0.03s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=232 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bllst_double | |
----------------------------------- stdout ----------------------------------- | |
run tests (weight = 0) | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 1, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 2, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 3, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 4, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 5, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 6, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 1, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 2, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 3, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 4, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 5, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 6, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 1, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 2, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 3, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 4, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 5, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 6, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 1, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 2, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 3, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 4, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 5, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 6, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 1, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 2, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 3, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 4, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 5, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 1, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 2, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 3, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 4, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 5, search = 1, status = 0, objective = 0.5000 | |
run tests (weight = 1) | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 1, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 2, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 3, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 4, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 5, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 6, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 1, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 2, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 3, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 4, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 5, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 6, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 1, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 2, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 3, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 4, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 5, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 6, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 1, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 2, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 3, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 4, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 5, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 6, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 1, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 2, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 3, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 4, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 5, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 1, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 2, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 3, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 4, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 5, search = 1, status = 0, objective = 1.8000 | |
error exit tests | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve exit status = -3 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve exit status = -4 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve exit status = -18 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve exit status = -19 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve exit status = -78 | |
BLLS_solve exit status = -78 | |
BLLS_solve exit status = -78 | |
tests completed | |
============================================================================== | |
=================================== 39/637 =================================== | |
test: GALAHAD:blls+quadruple+fortran / bllst_quadruple | |
start time: 13:30:34 | |
duration: 0.05s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MALLOC_PERTURB_=36 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bllst_quadruple | |
----------------------------------- stdout ----------------------------------- | |
run tests (weight = 0) | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 1, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 2, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 3, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 4, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 5, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 6, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 1, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 2, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 3, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 4, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 5, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 6, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 1, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 2, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 3, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 4, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 5, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 6, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 1, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 2, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 3, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 4, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 5, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 6, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 1, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 2, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 3, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 4, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 5, search = 0, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 1, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 2, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 3, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 4, search = 1, status = 0, objective = 0.5000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 5, search = 1, status = 0, objective = 0.5000 | |
run tests (weight = 1) | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 1, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 2, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 3, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 4, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 5, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 6, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 1, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 2, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 1, mode = 3, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 4, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 5, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 6, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 1, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 2, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 3, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 4, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 5, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 6, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 1, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 2, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument w = 2, mode = 3, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 4, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 5, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument mode = 6, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 1, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 2, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 3, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 4, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 5, search = 0, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 1, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 2, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 3, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 4, search = 1, status = 0, objective = 1.8000 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve argument storage = 5, search = 1, status = 0, objective = 1.8000 | |
error exit tests | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve exit status = -3 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve exit status = -4 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve exit status = -18 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve exit status = -19 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
BLLS_solve exit status = -78 | |
BLLS_solve exit status = -78 | |
BLLS_solve exit status = -78 | |
tests completed | |
============================================================================== | |
=================================== 40/637 =================================== | |
test: GALAHAD:blls+single+fortran / bllsti_single | |
start time: 13:30:34 | |
duration: 0.03s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 MALLOC_PERTURB_=229 /home/orban/dev/ralna/src/GALAHAD/builddir/bllsti_single | |
----------------------------------- stdout ----------------------------------- | |
basic tests of Jacobian storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
CO: 5 iterations. Optimal objective value = 111.62 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
SR: 5 iterations. Optimal objective value = 111.62 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
DD: 5 iterations. Optimal objective value = 111.62 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
DR: 5 iterations. Optimal objective value = 111.62 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
SC: 5 iterations. Optimal objective value = 111.62 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
DC: 5 iterations. Optimal objective value = 111.62 status = 0 | |
test of reverse-communication interface | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
RC: 5 iterations. Optimal objective value = 111.62 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 41/637 =================================== | |
test: GALAHAD:blls+double+fortran / bllsti_double | |
start time: 13:30:34 | |
duration: 0.02s | |
result: exit status 0 | |
command: MALLOC_PERTURB_=188 LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bllsti_double | |
----------------------------------- stdout ----------------------------------- | |
basic tests of Jacobian storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
CO: 5 iterations. Optimal objective value = 111.62 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
SR: 5 iterations. Optimal objective value = 111.62 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
DD: 5 iterations. Optimal objective value = 111.62 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
DR: 5 iterations. Optimal objective value = 111.62 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
SC: 5 iterations. Optimal objective value = 111.62 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
DC: 5 iterations. Optimal objective value = 111.62 status = 0 | |
test of reverse-communication interface | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
RC: 5 iterations. Optimal objective value = 111.62 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 42/637 =================================== | |
test: GALAHAD:blls+quadruple+fortran / bllsti_quadruple | |
start time: 13:30:34 | |
duration: 0.03s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=88 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bllsti_quadruple | |
----------------------------------- stdout ----------------------------------- | |
basic tests of Jacobian storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
CO: 5 iterations. Optimal objective value = 111.63 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
SR: 5 iterations. Optimal objective value = 111.63 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
DD: 5 iterations. Optimal objective value = 111.63 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
DR: 5 iterations. Optimal objective value = 111.63 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
SC: 5 iterations. Optimal objective value = 111.63 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
DC: 5 iterations. Optimal objective value = 111.63 status = 0 | |
test of reverse-communication interface | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
RC: 5 iterations. Optimal objective value = 111.62 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 43/637 =================================== | |
test: GALAHAD:bllsb+single+fortran / bllsbt_single | |
start time: 13:30:34 | |
duration: 0.05s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MALLOC_PERTURB_=75 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bllsbt_single | |
----------------------------------- stdout ----------------------------------- | |
error exit tests | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: BLLSB_solve exit status = -3 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: BLLSB_solve exit status = -4 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
18: BLLSB_solve exit status = -18 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
19: BLLSB_solve exit status = -19 | |
basic tests of storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I1: 5 iterations. Optimal objective value = 0.1 status = 0 | |
I2: 5 iterations. Optimal objective value = 0.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D1: 5 iterations. Optimal objective value = 0.1 status = 0 | |
D2: 5 iterations. Optimal objective value = 0.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R1: 5 iterations. Optimal objective value = 0.1 status = 0 | |
R2: 5 iterations. Optimal objective value = 0.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C1: 5 iterations. Optimal objective value = 0.1 status = 0 | |
C2: 5 iterations. Optimal objective value = 0.1 status = 0 | |
basic tests of options | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
0: 4 iterations. Optimal objective value = 0.0 status = 0 | |
1: 4 iterations. Optimal objective value = 0.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
2: 0 iterations. Optimal objective value = 0.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: -1 iterations. Optimal objective value = 0.0 status = 0 | |
full test of generic problems | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1: 5 iterations. Optimal objective value = 190.9 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
2: 5 iterations. Optimal objective value = 91.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: 5 iterations. Optimal objective value = 91.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: 1 iterations. Optimal objective value = 0.0 status = 0 | |
5: 1 iterations. Optimal objective value = 0.0 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 44/637 =================================== | |
test: GALAHAD:bllsb+double+fortran / bllsbt_double | |
start time: 13:30:35 | |
duration: 0.07s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 MALLOC_PERTURB_=235 /home/orban/dev/ralna/src/GALAHAD/builddir/bllsbt_double | |
----------------------------------- stdout ----------------------------------- | |
error exit tests | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: BLLSB_solve exit status = -3 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: BLLSB_solve exit status = -4 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
18: BLLSB_solve exit status = -18 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
19: BLLSB_solve exit status = -19 | |
basic tests of storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I1: 7 iterations. Optimal objective value = 0.0 status = 0 | |
I2: 7 iterations. Optimal objective value = 0.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D1: 7 iterations. Optimal objective value = 0.0 status = 0 | |
D2: 7 iterations. Optimal objective value = 0.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R1: 7 iterations. Optimal objective value = 0.0 status = 0 | |
R2: 8 iterations. Optimal objective value = 0.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C1: 7 iterations. Optimal objective value = 0.0 status = 0 | |
C2: 7 iterations. Optimal objective value = 0.0 status = 0 | |
basic tests of options | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
0: 6 iterations. Optimal objective value = 0.0 status = 0 | |
1: 6 iterations. Optimal objective value = 0.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
2: 0 iterations. Optimal objective value = 0.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: -1 iterations. Optimal objective value = 0.0 status = 0 | |
full test of generic problems | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1: 9 iterations. Optimal objective value = 182.5 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
2: 8 iterations. Optimal objective value = 73.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: 8 iterations. Optimal objective value = 73.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: 1 iterations. Optimal objective value = 0.0 status = 0 | |
5: 1 iterations. Optimal objective value = 0.0 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 45/637 =================================== | |
test: GALAHAD:bllsb+quadruple+fortran / bllsbt_quadruple | |
start time: 13:30:35 | |
duration: 0.07s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=93 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bllsbt_quadruple | |
----------------------------------- stdout ----------------------------------- | |
error exit tests | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: BLLSB_solve exit status = -3 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: BLLSB_solve exit status = -4 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
18: BLLSB_solve exit status = -18 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
19: BLLSB_solve exit status = -19 | |
basic tests of storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I1: 9 iterations. Optimal objective value = 0.0 status = 0 | |
I2: 9 iterations. Optimal objective value = 0.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D1: 9 iterations. Optimal objective value = 0.0 status = 0 | |
D2: 9 iterations. Optimal objective value = 0.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R1: 9 iterations. Optimal objective value = 0.0 status = 0 | |
R2: 9 iterations. Optimal objective value = 0.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C1: 9 iterations. Optimal objective value = 0.0 status = 0 | |
C2: 9 iterations. Optimal objective value = 0.0 status = 0 | |
basic tests of options | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
0: 6 iterations. Optimal objective value = 0.0 status = 0 | |
1: 6 iterations. Optimal objective value = 0.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
2: 0 iterations. Optimal objective value = 0.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: -1 iterations. Optimal objective value = 0.0 status = 0 | |
full test of generic problems | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
X_stat | |
0 0 0 -1 -1 -1 -1 -1 0 0 | |
1 1 | |
C_stat | |
1: 10 iterations. Optimal objective value = 182.5 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
2: 10 iterations. Optimal objective value = 73.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: 10 iterations. Optimal objective value = 73.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: 1 iterations. Optimal objective value = 0.0 status = 0 | |
5: 1 iterations. Optimal objective value = 0.0 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 46/637 =================================== | |
test: GALAHAD:bllsb+single+fortran / bllsbti_single | |
start time: 13:30:35 | |
duration: 0.02s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=93 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bllsbti_single | |
----------------------------------- stdout ----------------------------------- | |
basic tests of least-squares storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
CO: 4 iterations. Optimal objective value = 1.47 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
SR: 4 iterations. Optimal objective value = 1.47 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
SC: 4 iterations. Optimal objective value = 1.47 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
DR: 4 iterations. Optimal objective value = 1.47 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
DC: 4 iterations. Optimal objective value = 1.47 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 47/637 =================================== | |
test: GALAHAD:bllsb+double+fortran / bllsbti_double | |
start time: 13:30:35 | |
duration: 0.03s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 MALLOC_PERTURB_=42 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bllsbti_double | |
----------------------------------- stdout ----------------------------------- | |
basic tests of least-squares storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
CO: 8 iterations. Optimal objective value = 0.21 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
SR: 8 iterations. Optimal objective value = 0.21 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
SC: 8 iterations. Optimal objective value = 0.21 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
DR: 8 iterations. Optimal objective value = 0.21 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
DC: 8 iterations. Optimal objective value = 0.21 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 48/637 =================================== | |
test: GALAHAD:bllsb+quadruple+fortran / bllsbti_quadruple | |
start time: 13:30:35 | |
duration: 0.03s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=58 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bllsbti_quadruple | |
----------------------------------- stdout ----------------------------------- | |
basic tests of least-squares storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
CO: 10 iterations. Optimal objective value = 0.21 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
SR: 10 iterations. Optimal objective value = 0.21 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
SC: 10 iterations. Optimal objective value = 0.21 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
DR: 10 iterations. Optimal objective value = 0.21 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
DC: 10 iterations. Optimal objective value = 0.21 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 49/637 =================================== | |
test: GALAHAD:bqp+single+fortran / bqpt_single | |
start time: 13:30:35 | |
duration: 0.02s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 MALLOC_PERTURB_=21 /home/orban/dev/ralna/src/GALAHAD/builddir/bqpt_single | |
----------------------------------- stdout ----------------------------------- | |
error exit tests | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: BQP_solve exit status = -3 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: BQP_solve exit status = -4 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
18: BQP_solve exit status = -18 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
19: BQP_solve exit status = -19 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
20: BQP_solve exit status = -20 | |
basic tests of storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I1: 1 iterations. Optimal objective value = -0.0 status = 0 | |
I2: 1 iterations. Optimal objective value = -0.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D1: 2 iterations. Optimal objective value = -0.8 status = 0 | |
D2: 2 iterations. Optimal objective value = -0.8 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R1: 2 iterations. Optimal objective value = -0.8 status = 0 | |
R2: 2 iterations. Optimal objective value = -0.8 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C1: 2 iterations. Optimal objective value = -0.8 status = 0 | |
C2: 2 iterations. Optimal objective value = -0.8 status = 0 | |
basic tests of options | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1: 0 iterations. Optimal objective value = 0.1 status = 0 | |
2: 0 iterations. Optimal objective value = 0.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: 0 iterations. Optimal objective value = 0.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: 0 iterations. Optimal objective value = 0.3 status = 0 | |
full test of generic problems | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1: 2 iterations. Optimal objective value = 61.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
2: 2 iterations. Optimal objective value = 19.6 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: 2 iterations. Optimal objective value = 19.6 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: 2 iterations. Optimal objective value = -2.4 status = 0 | |
5: 2 iterations. Optimal objective value = -1.9 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 50/637 =================================== | |
test: GALAHAD:bqp+double+fortran / bqpt_double | |
start time: 13:30:35 | |
duration: 0.02s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MALLOC_PERTURB_=32 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bqpt_double | |
----------------------------------- stdout ----------------------------------- | |
error exit tests | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: BQP_solve exit status = -3 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: BQP_solve exit status = -4 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
18: BQP_solve exit status = -18 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
19: BQP_solve exit status = -19 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
20: BQP_solve exit status = -20 | |
basic tests of storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I1: 1 iterations. Optimal objective value = -0.0 status = 0 | |
I2: 1 iterations. Optimal objective value = -0.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D1: 2 iterations. Optimal objective value = -0.8 status = 0 | |
D2: 2 iterations. Optimal objective value = -0.8 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R1: 2 iterations. Optimal objective value = -0.8 status = 0 | |
R2: 2 iterations. Optimal objective value = -0.8 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C1: 2 iterations. Optimal objective value = -0.8 status = 0 | |
C2: 2 iterations. Optimal objective value = -0.8 status = 0 | |
basic tests of options | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1: 0 iterations. Optimal objective value = 0.1 status = 0 | |
2: 0 iterations. Optimal objective value = 0.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: 0 iterations. Optimal objective value = 0.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: 0 iterations. Optimal objective value = 0.3 status = 0 | |
full test of generic problems | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1: 2 iterations. Optimal objective value = 61.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
2: 2 iterations. Optimal objective value = 19.6 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: 2 iterations. Optimal objective value = 19.6 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: 2 iterations. Optimal objective value = -2.4 status = 0 | |
5: 2 iterations. Optimal objective value = -1.9 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 51/637 =================================== | |
test: GALAHAD:bqp+quadruple+fortran / bqpt_quadruple | |
start time: 13:30:35 | |
duration: 0.02s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=210 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bqpt_quadruple | |
----------------------------------- stdout ----------------------------------- | |
error exit tests | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: BQP_solve exit status = -3 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: BQP_solve exit status = -4 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
18: BQP_solve exit status = -18 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
19: BQP_solve exit status = -19 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
20: BQP_solve exit status = -20 | |
basic tests of storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I1: 1 iterations. Optimal objective value = -0.0 status = 0 | |
I2: 1 iterations. Optimal objective value = -0.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D1: 2 iterations. Optimal objective value = -0.8 status = 0 | |
D2: 2 iterations. Optimal objective value = -0.8 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R1: 2 iterations. Optimal objective value = -0.8 status = 0 | |
R2: 2 iterations. Optimal objective value = -0.8 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C1: 2 iterations. Optimal objective value = -0.8 status = 0 | |
C2: 2 iterations. Optimal objective value = -0.8 status = 0 | |
basic tests of options | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1: 0 iterations. Optimal objective value = 0.1 status = 0 | |
2: 0 iterations. Optimal objective value = 0.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: 0 iterations. Optimal objective value = 0.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: 0 iterations. Optimal objective value = 0.3 status = 0 | |
full test of generic problems | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1: 2 iterations. Optimal objective value = 61.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
2: 2 iterations. Optimal objective value = 19.6 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: 2 iterations. Optimal objective value = 19.6 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: 2 iterations. Optimal objective value = -2.4 status = 0 | |
5: 2 iterations. Optimal objective value = -1.9 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 52/637 =================================== | |
test: GALAHAD:bqp+single+fortran / bqpti_single | |
start time: 13:30:35 | |
duration: 0.02s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MALLOC_PERTURB_=162 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bqpti_single | |
----------------------------------- stdout ----------------------------------- | |
basic tests of Hessian storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C: 2 iterations. Optimal objective value = -0.45 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R: 2 iterations. Optimal objective value = -0.45 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D: 2 iterations. Optimal objective value = -0.45 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
L: 1 iterations. Optimal objective value = 0.00 status = 0 | |
test of reverse-communication interface | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I: 2 iterations. Optimal objective value = -0.45 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 53/637 =================================== | |
test: GALAHAD:bqp+double+fortran / bqpti_double | |
start time: 13:30:35 | |
duration: 0.02s | |
result: exit status 0 | |
command: MALLOC_PERTURB_=188 LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bqpti_double | |
----------------------------------- stdout ----------------------------------- | |
basic tests of Hessian storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C: 2 iterations. Optimal objective value = -0.45 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R: 2 iterations. Optimal objective value = -0.45 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D: 2 iterations. Optimal objective value = -0.45 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
L: 1 iterations. Optimal objective value = 0.00 status = 0 | |
test of reverse-communication interface | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I: 2 iterations. Optimal objective value = -0.45 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 54/637 =================================== | |
test: GALAHAD:bqp+quadruple+fortran / bqpti_quadruple | |
start time: 13:30:35 | |
duration: 0.02s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=81 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bqpti_quadruple | |
----------------------------------- stdout ----------------------------------- | |
basic tests of Hessian storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C: 2 iterations. Optimal objective value = -0.45 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R: 2 iterations. Optimal objective value = -0.45 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D: 2 iterations. Optimal objective value = -0.45 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
L: 1 iterations. Optimal objective value = 0.00 status = 0 | |
test of reverse-communication interface | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I: 2 iterations. Optimal objective value = -0.45 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 55/637 =================================== | |
test: GALAHAD:bqpb+single+fortran / bqpbt_single | |
start time: 13:30:35 | |
duration: 0.03s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=98 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bqpbt_single | |
----------------------------------- stdout ----------------------------------- | |
error exit tests | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: BQPB_solve exit status = -3 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: BQPB_solve exit status = -4 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
18: BQPB_solve exit status = -18 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
19: BQPB_solve exit status = -19 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
20: BQPB_solve exit status = -7 | |
basic tests of storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I1: 0 iterations. Optimal objective value = -0.0 status = 0 | |
I2: 0 iterations. Optimal objective value = -0.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D1: 4 iterations. Optimal objective value = -0.1 status = 0 | |
D2: 4 iterations. Optimal objective value = -0.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R1: 4 iterations. Optimal objective value = -0.1 status = 0 | |
R2: 4 iterations. Optimal objective value = -0.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C1: 4 iterations. Optimal objective value = -0.1 status = 0 | |
C2: 4 iterations. Optimal objective value = -0.1 status = 0 | |
basic tests of options | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1: 5 iterations. Optimal objective value = 0.1 status = 0 | |
2: 5 iterations. Optimal objective value = 0.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: 0 iterations. Optimal objective value = 0.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: 0 iterations. Optimal objective value = 0.3 status = 0 | |
full test of generic problems | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1: 5 iterations. Optimal objective value = 94.4 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
2: 0 iterations. Optimal objective value = 19.6 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: 0 iterations. Optimal objective value = 19.6 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: 0 iterations. Optimal objective value = -2.4 status = 0 | |
5: 0 iterations. Optimal objective value = -1.9 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 56/637 =================================== | |
test: GALAHAD:bqpb+double+fortran / bqpbt_double | |
start time: 13:30:35 | |
duration: 0.04s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=96 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bqpbt_double | |
----------------------------------- stdout ----------------------------------- | |
error exit tests | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: BQPB_solve exit status = -3 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: BQPB_solve exit status = -4 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
18: BQPB_solve exit status = -18 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
19: BQPB_solve exit status = -19 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
20: BQPB_solve exit status = -7 | |
basic tests of storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I1: 0 iterations. Optimal objective value = -0.0 status = 0 | |
I2: 0 iterations. Optimal objective value = -0.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D1: 8 iterations. Optimal objective value = -0.8 status = 0 | |
D2: 8 iterations. Optimal objective value = -0.8 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R1: 8 iterations. Optimal objective value = -0.8 status = 0 | |
R2: 8 iterations. Optimal objective value = -0.8 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C1: 8 iterations. Optimal objective value = -0.8 status = 0 | |
C2: 8 iterations. Optimal objective value = -0.8 status = 0 | |
basic tests of options | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1: 6 iterations. Optimal objective value = 0.1 status = 0 | |
2: 6 iterations. Optimal objective value = 0.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: 0 iterations. Optimal objective value = 0.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: 0 iterations. Optimal objective value = 0.3 status = 0 | |
full test of generic problems | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1: 10 iterations. Optimal objective value = 61.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
2: 0 iterations. Optimal objective value = 19.6 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: 0 iterations. Optimal objective value = 19.6 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: 0 iterations. Optimal objective value = -2.4 status = 0 | |
5: 0 iterations. Optimal objective value = -1.9 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 57/637 =================================== | |
test: GALAHAD:bqpb+quadruple+fortran / bqpbt_quadruple | |
start time: 13:30:35 | |
duration: 0.05s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=135 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bqpbt_quadruple | |
----------------------------------- stdout ----------------------------------- | |
error exit tests | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: BQPB_solve exit status = -3 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: BQPB_solve exit status = -4 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
18: BQPB_solve exit status = -18 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
19: BQPB_solve exit status = -19 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
20: 0 iterations. Optimal objective value = ****** status = 0 | |
basic tests of storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I1: 0 iterations. Optimal objective value = -0.0 status = 0 | |
I2: 0 iterations. Optimal objective value = -0.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D1: 10 iterations. Optimal objective value = -0.8 status = 0 | |
D2: 10 iterations. Optimal objective value = -0.8 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R1: 10 iterations. Optimal objective value = -0.8 status = 0 | |
R2: 10 iterations. Optimal objective value = -0.8 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C1: 10 iterations. Optimal objective value = -0.8 status = 0 | |
C2: 10 iterations. Optimal objective value = -0.8 status = 0 | |
basic tests of options | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1: 8 iterations. Optimal objective value = 0.1 status = 0 | |
2: 8 iterations. Optimal objective value = 0.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: 0 iterations. Optimal objective value = 0.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: 0 iterations. Optimal objective value = 0.3 status = 0 | |
full test of generic problems | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1: 12 iterations. Optimal objective value = 61.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
2: 0 iterations. Optimal objective value = 19.6 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: 0 iterations. Optimal objective value = 19.6 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: 0 iterations. Optimal objective value = -2.4 status = 0 | |
5: 0 iterations. Optimal objective value = -1.9 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 58/637 =================================== | |
test: GALAHAD:bqpb+single+fortran / bqpbti_single | |
start time: 13:30:35 | |
duration: 0.10s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=218 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bqpbti_single | |
----------------------------------- stdout ----------------------------------- | |
basic tests of qp storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C: 0 iterations. Optimal objective value = -0.50 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R: 0 iterations. Optimal objective value = -0.50 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D: 0 iterations. Optimal objective value = -0.50 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
L: 0 iterations. Optimal objective value = -0.50 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
S: 0 iterations. Optimal objective value = -0.50 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I: 0 iterations. Optimal objective value = -0.50 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
Z: 0 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
W: 0 iterations. Optimal objective value = -0.50 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 59/637 =================================== | |
test: GALAHAD:bqpb+double+fortran / bqpbti_double | |
start time: 13:30:35 | |
duration: 0.02s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=100 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bqpbti_double | |
----------------------------------- stdout ----------------------------------- | |
basic tests of qp storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C: 0 iterations. Optimal objective value = -0.50 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R: 0 iterations. Optimal objective value = -0.50 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D: 0 iterations. Optimal objective value = -0.50 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
L: 0 iterations. Optimal objective value = -0.50 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
S: 0 iterations. Optimal objective value = -0.50 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I: 0 iterations. Optimal objective value = -0.50 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
Z: 0 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
W: 0 iterations. Optimal objective value = -0.50 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 60/637 =================================== | |
test: GALAHAD:bqpb+quadruple+fortran / bqpbti_quadruple | |
start time: 13:30:35 | |
duration: 0.02s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MALLOC_PERTURB_=200 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bqpbti_quadruple | |
----------------------------------- stdout ----------------------------------- | |
basic tests of qp storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C: 0 iterations. Optimal objective value = -0.50 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R: 0 iterations. Optimal objective value = -0.50 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D: 0 iterations. Optimal objective value = -0.50 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
L: 0 iterations. Optimal objective value = -0.50 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
S: 0 iterations. Optimal objective value = -0.50 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I: 0 iterations. Optimal objective value = -0.50 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
Z: 0 iterations. Optimal objective value = -1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
W: 0 iterations. Optimal objective value = -0.50 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 61/637 =================================== | |
test: GALAHAD:bsc+single+fortran / bsct_single | |
start time: 13:30:35 | |
duration: 0.02s | |
result: exit status 0 | |
command: MALLOC_PERTURB_=202 LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bsct_single | |
----------------------------------- stdout ----------------------------------- | |
error exit tests | |
BSC_solve exit status = -3 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = -3 | |
BSC_solve exit status = -46 | |
normal exit tests | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
============================================================================== | |
=================================== 62/637 =================================== | |
test: GALAHAD:bsc+double+fortran / bsct_double | |
start time: 13:30:35 | |
duration: 0.02s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=44 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bsct_double | |
----------------------------------- stdout ----------------------------------- | |
error exit tests | |
BSC_solve exit status = -3 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = -3 | |
BSC_solve exit status = -46 | |
normal exit tests | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
============================================================================== | |
=================================== 63/637 =================================== | |
test: GALAHAD:bsc+quadruple+fortran / bsct_quadruple | |
start time: 13:30:35 | |
duration: 0.03s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=158 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/bsct_quadruple | |
----------------------------------- stdout ----------------------------------- | |
error exit tests | |
BSC_solve exit status = -3 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = -3 | |
BSC_solve exit status = -46 | |
normal exit tests | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
BSC_solve exit status = 0 | |
============================================================================== | |
=================================== 64/637 =================================== | |
test: GALAHAD:ccqp+single+fortran / ccqpt_single | |
start time: 13:30:35 | |
duration: 0.04s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 MALLOC_PERTURB_=240 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/ccqpt_single | |
----------------------------------- stdout ----------------------------------- | |
error exit tests | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: CCQP_solve exit status = -3 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: CCQP_solve exit status = -4 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
18: CCQP_solve exit status = -10 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
19: CCQP_solve exit status = -19 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
23: CCQP_solve exit status = -23 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
7: CCQP_solve exit status = -7 | |
basic tests of storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
N1: 4 iterations. Optimal objective value = 11.0 status = 0 | |
N2: 4 iterations. Optimal objective value = 11.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I1: 5 iterations. Optimal objective value = 11.5 status = 0 | |
I2: 5 iterations. Optimal objective value = 11.5 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
S1: 6 iterations. Optimal objective value = 4.7 status = 0 | |
S2: 6 iterations. Optimal objective value = 4.7 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
G1: 4 iterations. Optimal objective value = 11.6 status = 0 | |
G2: 4 iterations. Optimal objective value = 11.6 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D1: 6 iterations. Optimal objective value = 6.1 status = 0 | |
D2: 6 iterations. Optimal objective value = 6.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R1: 6 iterations. Optimal objective value = 6.1 status = 0 | |
R2: 6 iterations. Optimal objective value = 6.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C1: 6 iterations. Optimal objective value = 6.1 status = 0 | |
C2: 6 iterations. Optimal objective value = 6.1 status = 0 | |
basic tests of options | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
0: 5 iterations. Optimal objective value = 0.3 status = 0 | |
1: 5 iterations. Optimal objective value = 0.3 status = 0 | |
2: 5 iterations. Optimal objective value = 0.3 status = 0 | |
3: 5 iterations. Optimal objective value = 0.3 status = 0 | |
4: 5 iterations. Optimal objective value = 0.3 status = 0 | |
5: 5 iterations. Optimal objective value = 0.3 status = 0 | |
6: 5 iterations. Optimal objective value = 0.3 status = 0 | |
7: 5 iterations. Optimal objective value = 0.3 status = 0 | |
8: 5 iterations. Optimal objective value = 0.3 status = 0 | |
9: 5 iterations. Optimal objective value = 0.3 status = 0 | |
10: 5 iterations. Optimal objective value = 0.3 status = 0 | |
11: 5 iterations. Optimal objective value = 0.3 status = 0 | |
12: 5 iterations. Optimal objective value = 0.3 status = 0 | |
13: 5 iterations. Optimal objective value = 0.3 status = 0 | |
14: 5 iterations. Optimal objective value = 0.3 status = 0 | |
15: 5 iterations. Optimal objective value = 0.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
16: 1 iterations. Optimal objective value = 0.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
17: -1 iterations. Optimal objective value = 0.0 status = 0 | |
full test of generic problems | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1: CCQP_solve exit status = -10 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
2: 5 iterations. Optimal objective value = 49.8 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: 5 iterations. Optimal objective value = 49.8 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: 1 iterations. Optimal objective value = 28.1 status = 0 | |
5: 1 iterations. Optimal objective value = 28.7 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 65/637 =================================== | |
test: GALAHAD:ccqp+double+fortran / ccqpt_double | |
start time: 13:30:35 | |
duration: 0.06s | |
result: exit status 0 | |
command: MALLOC_PERTURB_=18 LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/ccqpt_double | |
----------------------------------- stdout ----------------------------------- | |
error exit tests | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: CCQP_solve exit status = -3 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: CCQP_solve exit status = -4 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
18: CCQP_solve exit status = -10 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
19: CCQP_solve exit status = -19 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
23: CCQP_solve exit status = -23 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
7: CCQP_solve exit status = -7 | |
basic tests of storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
N1: 9 iterations. Optimal objective value = 1.0 status = 0 | |
N2: 9 iterations. Optimal objective value = 1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I1: 10 iterations. Optimal objective value = 3.1 status = 0 | |
I2: 10 iterations. Optimal objective value = 3.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
S1: 10 iterations. Optimal objective value = 4.5 status = 0 | |
S2: 10 iterations. Optimal objective value = 4.5 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
G1: 9 iterations. Optimal objective value = 4.0 status = 0 | |
G2: 9 iterations. Optimal objective value = 4.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D1: 9 iterations. Optimal objective value = 5.4 status = 0 | |
D2: 9 iterations. Optimal objective value = 5.4 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R1: 9 iterations. Optimal objective value = 5.4 status = 0 | |
R2: 9 iterations. Optimal objective value = 5.4 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C1: 9 iterations. Optimal objective value = 5.4 status = 0 | |
C2: 9 iterations. Optimal objective value = 5.4 status = 0 | |
basic tests of options | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
0: 6 iterations. Optimal objective value = 0.3 status = 0 | |
1: 6 iterations. Optimal objective value = 0.3 status = 0 | |
2: 6 iterations. Optimal objective value = 0.3 status = 0 | |
3: 6 iterations. Optimal objective value = 0.3 status = 0 | |
4: 6 iterations. Optimal objective value = 0.3 status = 0 | |
5: 6 iterations. Optimal objective value = 0.3 status = 0 | |
6: 6 iterations. Optimal objective value = 0.3 status = 0 | |
7: 6 iterations. Optimal objective value = 0.3 status = 0 | |
8: 6 iterations. Optimal objective value = 0.3 status = 0 | |
9: 6 iterations. Optimal objective value = 0.3 status = 0 | |
10: 6 iterations. Optimal objective value = 0.3 status = 0 | |
11: 6 iterations. Optimal objective value = 0.3 status = 0 | |
12: 6 iterations. Optimal objective value = 0.3 status = 0 | |
13: 6 iterations. Optimal objective value = 0.3 status = 0 | |
14: 6 iterations. Optimal objective value = 0.3 status = 0 | |
15: 6 iterations. Optimal objective value = 0.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
16: 1 iterations. Optimal objective value = 0.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
17: -1 iterations. Optimal objective value = 0.0 status = 0 | |
full test of generic problems | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1: 9 iterations. Optimal objective value = 80.7 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
2: 9 iterations. Optimal objective value = 44.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: 9 iterations. Optimal objective value = 44.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: 1 iterations. Optimal objective value = 28.1 status = 0 | |
5: 1 iterations. Optimal objective value = 28.7 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 66/637 =================================== | |
test: GALAHAD:ccqp+quadruple+fortran / ccqpt_quadruple | |
start time: 13:30:35 | |
duration: 0.10s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=77 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/ccqpt_quadruple | |
----------------------------------- stdout ----------------------------------- | |
error exit tests | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: CCQP_solve exit status = -3 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: CCQP_solve exit status = -4 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
18: CCQP_solve exit status = -10 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
19: CCQP_solve exit status = -19 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
23: CCQP_solve exit status = -23 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
7: CCQP_solve exit status = -7 | |
basic tests of storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
N1: 11 iterations. Optimal objective value = 1.0 status = 0 | |
N2: 11 iterations. Optimal objective value = 1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I1: 10 iterations. Optimal objective value = 3.1 status = 0 | |
I2: 10 iterations. Optimal objective value = 3.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
S1: 10 iterations. Optimal objective value = 4.5 status = 0 | |
S2: 10 iterations. Optimal objective value = 4.5 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
G1: 9 iterations. Optimal objective value = 4.0 status = 0 | |
G2: 9 iterations. Optimal objective value = 4.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D1: 9 iterations. Optimal objective value = 5.4 status = 0 | |
D2: 9 iterations. Optimal objective value = 5.4 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R1: 9 iterations. Optimal objective value = 5.4 status = 0 | |
R2: 9 iterations. Optimal objective value = 5.4 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C1: 9 iterations. Optimal objective value = 5.4 status = 0 | |
C2: 9 iterations. Optimal objective value = 5.4 status = 0 | |
basic tests of options | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
0: 8 iterations. Optimal objective value = 0.3 status = 0 | |
1: 8 iterations. Optimal objective value = 0.3 status = 0 | |
2: 8 iterations. Optimal objective value = 0.3 status = 0 | |
3: 8 iterations. Optimal objective value = 0.3 status = 0 | |
4: 8 iterations. Optimal objective value = 0.3 status = 0 | |
5: 8 iterations. Optimal objective value = 0.3 status = 0 | |
6: 8 iterations. Optimal objective value = 0.3 status = 0 | |
7: 8 iterations. Optimal objective value = 0.3 status = 0 | |
8: 8 iterations. Optimal objective value = 0.3 status = 0 | |
9: 8 iterations. Optimal objective value = 0.3 status = 0 | |
10: 8 iterations. Optimal objective value = 0.3 status = 0 | |
11: 8 iterations. Optimal objective value = 0.3 status = 0 | |
12: 8 iterations. Optimal objective value = 0.3 status = 0 | |
13: 8 iterations. Optimal objective value = 0.3 status = 0 | |
14: 8 iterations. Optimal objective value = 0.3 status = 0 | |
15: 8 iterations. Optimal objective value = 0.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
16: 1 iterations. Optimal objective value = 0.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
17: -1 iterations. Optimal objective value = 0.0 status = 0 | |
full test of generic problems | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
X_stat | |
0 0 0 0 0 0 -1 -1 0 0 | |
1 1 | |
C_stat | |
-1 -1 -1 -1 0 0 0 0 0 0 | |
0 0 0 0 | |
X_stat | |
0 0 0 0 0 0 -1 -1 0 0 | |
1 1 | |
C_stat | |
-1 -1 -1 -1 0 0 0 0 0 0 | |
0 0 0 0 | |
1: 11 iterations. Optimal objective value = 80.7 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
2: 9 iterations. Optimal objective value = 44.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: 9 iterations. Optimal objective value = 44.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: 1 iterations. Optimal objective value = 28.1 status = 0 | |
5: 1 iterations. Optimal objective value = 28.7 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 67/637 =================================== | |
test: GALAHAD:ccqp+single+fortran / ccqpti_single | |
start time: 13:30:35 | |
duration: 0.07s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=146 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/ccqpti_single | |
----------------------------------- stdout ----------------------------------- | |
basic tests of qp storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C: 5 iterations. Optimal objective value = 6.08 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R: 5 iterations. Optimal objective value = 6.08 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D: 5 iterations. Optimal objective value = 6.11 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
L: 5 iterations. Optimal objective value = 6.08 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
S: 5 iterations. Optimal objective value = 6.08 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I: 5 iterations. Optimal objective value = 6.08 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
Z: CCQP_solve exit status = -10 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
W: 5 iterations. Optimal objective value = 6.08 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 68/637 =================================== | |
test: GALAHAD:ccqp+double+fortran / ccqpti_double | |
start time: 13:30:36 | |
duration: 0.04s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=31 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/ccqpti_double | |
----------------------------------- stdout ----------------------------------- | |
basic tests of qp storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C: 10 iterations. Optimal objective value = 3.11 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R: 10 iterations. Optimal objective value = 3.11 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D: 10 iterations. Optimal objective value = 3.11 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
L: 10 iterations. Optimal objective value = 3.11 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
S: 10 iterations. Optimal objective value = 3.11 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I: 10 iterations. Optimal objective value = 3.11 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
Z: 8 iterations. Optimal objective value = 1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
W: 10 iterations. Optimal objective value = 3.11 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 69/637 =================================== | |
test: GALAHAD:ccqp+quadruple+fortran / ccqpti_quadruple | |
start time: 13:30:36 | |
duration: 0.06s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=140 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/ccqpti_quadruple | |
----------------------------------- stdout ----------------------------------- | |
basic tests of qp storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C: 10 iterations. Optimal objective value = 3.11 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R: 10 iterations. Optimal objective value = 3.11 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D: 10 iterations. Optimal objective value = 3.11 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
L: 10 iterations. Optimal objective value = 3.11 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
S: 10 iterations. Optimal objective value = 3.11 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I: 10 iterations. Optimal objective value = 3.11 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
Z: 10 iterations. Optimal objective value = 1.00 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
W: 10 iterations. Optimal objective value = 3.11 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 70/637 =================================== | |
test: GALAHAD:cdqp+single+fortran / cdqpt_single | |
start time: 13:30:36 | |
duration: 0.04s | |
result: exit status 0 | |
command: MALLOC_PERTURB_=87 LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/cdqpt_single | |
----------------------------------- stdout ----------------------------------- | |
error exit tests | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: CDQP_solve exit status = -3 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: CDQP_solve exit status = -4 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
5: CDQP_solve exit status = -5 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
17: CDQP_solve exit status = -7 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
18: CDQP_solve exit status = -18 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
19: CDQP_solve exit status = -19 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
23: CDQP_solve exit status = -23 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
7: CDQP_solve exit status = -7 | |
basic tests of storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
N1:( 4 0) iterations. Optimal objective value = -1.0 status = 0 | |
N2:( 4 0) iterations. Optimal objective value = -1.0 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I1:( 5 0) iterations. Optimal objective value = 10.8 status = 0 | |
I2:( 5 0) iterations. Optimal objective value = 10.8 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
S1:( 6 0) iterations. Optimal objective value = 4.5 status = 0 | |
S2:( 6 0) iterations. Optimal objective value = 4.5 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
G1:( 6 0) iterations. Optimal objective value = 5.2 status = 0 | |
G2:( 6 0) iterations. Optimal objective value = 5.2 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D1:( 5 0) iterations. Optimal objective value = 17.3 status = 0 | |
D2:( 5 0) iterations. Optimal objective value = 17.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R1:( 5 0) iterations. Optimal objective value = 17.3 status = 0 | |
R2:( 5 0) iterations. Optimal objective value = 17.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C1:( 5 0) iterations. Optimal objective value = 17.3 status = 0 | |
C2:( 5 0) iterations. Optimal objective value = 17.3 status = 0 | |
basic tests of options | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
0:( 5 0) iterations. Optimal objective value = 0.3 status = 0 | |
1:( 5 0) iterations. Optimal objective value = 0.3 status = 0 | |
2:( 5 0) iterations. Optimal objective value = 0.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3:( 1 0) iterations. Optimal objective value = 0.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4:( -1 -1) iterations. Optimal objective value = -1.0 status = 0 | |
full test of generic problems | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1:( 5 3) iterations. Optimal objective value = 117.5 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
2:( 5 2) iterations. Optimal objective value = 44.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3:( 5 2) iterations. Optimal objective value = 44.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4:( 1 0) iterations. Optimal objective value = 28.1 status = 0 | |
5:( 1 0) iterations. Optimal objective value = 28.7 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 71/637 =================================== | |
test: GALAHAD:cdqp+double+fortran / cdqpt_double | |
start time: 13:30:36 | |
duration: 0.05s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MALLOC_PERTURB_=174 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/cdqpt_double | |
----------------------------------- stdout ----------------------------------- | |
error exit tests | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: CDQP_solve exit status = -3 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: CDQP_solve exit status = -4 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
5: CDQP_solve exit status = -5 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
17: CDQP_solve exit status = -7 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
18: CDQP_solve exit status = -18 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
19: CDQP_solve exit status = -19 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
23: CDQP_solve exit status = -23 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
7: CDQP_solve exit status = -7 | |
basic tests of storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
N1:( 9 2) iterations. Optimal objective value = 3.1 status = 0 | |
N2:( 9 2) iterations. Optimal objective value = 3.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I1:( 10 0) iterations. Optimal objective value = 3.1 status = 0 | |
I2:( 10 0) iterations. Optimal objective value = 3.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
S1:( 10 0) iterations. Optimal objective value = 4.5 status = 0 | |
S2:( 10 0) iterations. Optimal objective value = 4.5 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
G1:( 10 0) iterations. Optimal objective value = 5.4 status = 0 | |
G2:( 10 0) iterations. Optimal objective value = 5.4 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D1:( 10 0) iterations. Optimal objective value = 5.4 status = 0 | |
D2:( 10 0) iterations. Optimal objective value = 5.4 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R1:( 10 0) iterations. Optimal objective value = 5.4 status = 0 | |
R2:( 10 0) iterations. Optimal objective value = 5.4 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C1:( 10 0) iterations. Optimal objective value = 5.4 status = 0 | |
C2:( 10 0) iterations. Optimal objective value = 5.4 status = 0 | |
basic tests of options | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
0:( 6 0) iterations. Optimal objective value = 0.3 status = 0 | |
1:( 6 0) iterations. Optimal objective value = 0.3 status = 0 | |
2:( 6 0) iterations. Optimal objective value = 0.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3:( 1 0) iterations. Optimal objective value = 0.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4:( -1 -1) iterations. Optimal objective value = -1.0 status = 0 | |
full test of generic problems | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1:( 9 1) iterations. Optimal objective value = 117.5 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
2:( 9 1) iterations. Optimal objective value = 44.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3:( 9 1) iterations. Optimal objective value = 44.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4:( 1 0) iterations. Optimal objective value = 28.1 status = 0 | |
5:( 1 0) iterations. Optimal objective value = 28.7 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 72/637 =================================== | |
test: GALAHAD:cdqp+quadruple+fortran / cdqpt_quadruple | |
start time: 13:30:36 | |
duration: 0.12s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MALLOC_PERTURB_=61 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/cdqpt_quadruple | |
----------------------------------- stdout ----------------------------------- | |
error exit tests | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3: CDQP_solve exit status = -3 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4: CDQP_solve exit status = -4 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
5: CDQP_solve exit status = -5 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
17: CDQP_solve exit status = -7 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
18: CDQP_solve exit status = -18 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
19: CDQP_solve exit status = -19 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
23: CDQP_solve exit status = -23 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
7: CDQP_solve exit status = -7 | |
basic tests of storage formats | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
N1:( 11 2) iterations. Optimal objective value = 3.1 status = 0 | |
N2:( 11 2) iterations. Optimal objective value = 3.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
I1:( 12 0) iterations. Optimal objective value = 3.1 status = 0 | |
I2:( 12 0) iterations. Optimal objective value = 3.1 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
S1:( 11 0) iterations. Optimal objective value = 4.5 status = 0 | |
S2:( 11 0) iterations. Optimal objective value = 4.5 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
G1:( 12 0) iterations. Optimal objective value = 5.4 status = 0 | |
G2:( 12 0) iterations. Optimal objective value = 5.4 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
D1:( 12 0) iterations. Optimal objective value = 5.4 status = 0 | |
D2:( 12 0) iterations. Optimal objective value = 5.4 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
R1:( 12 0) iterations. Optimal objective value = 5.4 status = 0 | |
R2:( 12 0) iterations. Optimal objective value = 5.4 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
C1:( 12 0) iterations. Optimal objective value = 5.4 status = 0 | |
C2:( 12 0) iterations. Optimal objective value = 5.4 status = 0 | |
basic tests of options | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
0:( 8 0) iterations. Optimal objective value = 0.3 status = 0 | |
1:( 8 0) iterations. Optimal objective value = 0.3 status = 0 | |
2:( 8 0) iterations. Optimal objective value = 0.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3:( 1 0) iterations. Optimal objective value = 0.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4:( -1 -1) iterations. Optimal objective value = -1.0 status = 0 | |
full test of generic problems | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
1:( 11 1) iterations. Optimal objective value = 117.5 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
2:( 11 1) iterations. Optimal objective value = 44.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
3:( 11 1) iterations. Optimal objective value = 44.3 status = 0 | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
WARNING: To use the requested linear solver ssids, the environment variables | |
OMP_CANCELLATION and OMP_PROC_BIND must both be set to TRUE | |
4:( 1 0) iterations. Optimal objective value = 28.1 status = 0 | |
5:( 1 0) iterations. Optimal objective value = 28.7 status = 0 | |
tests completed | |
============================================================================== | |
=================================== 73/637 =================================== | |
test: GALAHAD:check+single+fortran / checkt_single | |
start time: 13:30:36 | |
duration: 0.07s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MALLOC_PERTURB_=7 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/checkt_single | |
----------------------------------- stdout ----------------------------------- | |
Beginning test number = 1 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 2 WRONG ENTRIES! | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 2 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 2 WRONG ENTRIES! | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 3 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 2 WRONG ENTRIES! | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 4 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 2 WRONG ENTRIES! | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 5 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 2 WRONG ENTRIES! | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXPENSIVE VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( 1) BAD 1.000139952E+00 1.000000000E+00 6.997095625E-05 | |
G( 2) BAD 9.006882668E+00 9.000000000E+00 6.877933629E-04 | |
G( 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE JACOBIAN C(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, 1) BAD 1.000139952E+00 1.000000000E+00 6.997095625E-05 | |
J( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
J( 1, 2) BAD 1.800770950E+01 1.800000000E+01 4.055987520E-04 | |
J( 2, 2) BAD -1.081258545E+02 -1.080000000E+02 1.153296791E-03 | |
J( 1, 3) BAD 2.101332092E+01 2.100000000E+01 6.051301025E-04 | |
J( 2, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 3, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 1, 2) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 2) BAD 3.182590637E+02 3.180000000E+02 8.114529774E-04 | |
H( 3, 2) BAD -1.200514030E+01 -1.200000000E+01 3.952517582E-04 | |
H( 1, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 3) BAD -1.200167942E+01 -1.200000000E+01 1.291695080E-04 | |
H( 3, 3) BAD -2.401374054E+01 -2.400000000E+01 5.493196659E-04 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 2 WRONG ENTRIES! | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 2 | |
checkH = T g_available = 1 verify_level = 2 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXPENSIVE VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( 1) BAD 1.000139952E+00 1.000000000E+00 6.997095625E-05 | |
G( 2) BAD 9.006882668E+00 9.000000000E+00 6.877933629E-04 | |
G( 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE JACOBIAN C(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, 1) BAD 1.000139952E+00 1.000000000E+00 6.997095625E-05 | |
J( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
J( 1, 2) BAD 1.800770950E+01 1.800000000E+01 4.055987520E-04 | |
J( 2, 2) BAD -1.081258545E+02 -1.080000000E+02 1.153296791E-03 | |
J( 1, 3) BAD 2.101332092E+01 2.100000000E+01 6.051301025E-04 | |
J( 2, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 3, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 1, 2) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 2) BAD 3.182590637E+02 3.180000000E+02 8.114529774E-04 | |
H( 3, 2) BAD -1.200514030E+01 -1.200000000E+01 3.952517582E-04 | |
H( 1, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 3) BAD -1.200167942E+01 -1.200000000E+01 1.291695080E-04 | |
H( 3, 3) BAD -2.401374054E+01 -2.400000000E+01 5.493196659E-04 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 2 WRONG ENTRIES! | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 3 | |
checkH = T g_available = 1 verify_level = 2 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8013227463E+01 | |
1 3 2.1026470184E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXPENSIVE VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( 1) BAD 1.000139952E+00 1.000000000E+00 6.997095625E-05 | |
G( 2) BAD 9.006882668E+00 9.000000000E+00 6.877933629E-04 | |
G( 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE JACOBIAN C(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, 1) BAD 1.000139952E+00 1.000000000E+00 6.997095625E-05 | |
J( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
J( 1, 2) BAD 1.800770950E+01 1.800000000E+01 4.055987520E-04 | |
J( 2, 2) BAD -1.081258545E+02 -1.080000000E+02 1.153296791E-03 | |
J( 1, 3) BAD 2.101332092E+01 2.100000000E+01 6.051301025E-04 | |
J( 2, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 3, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 1, 2) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 2) BAD 3.182590637E+02 3.180000000E+02 8.114529774E-04 | |
H( 3, 2) BAD -1.200514030E+01 -1.200000000E+01 3.952517582E-04 | |
H( 1, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 3) BAD -1.200167942E+01 -1.200000000E+01 1.291695080E-04 | |
H( 3, 3) BAD -2.401374054E+01 -2.400000000E+01 5.493196659E-04 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 2 WRONG ENTRIES! | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 4 | |
checkH = T g_available = 1 verify_level = 2 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8013227463E+01 | |
1 3 2.1026470184E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 3.4527E-04 alpha = 2.2046E-03 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXPENSIVE VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( 1) BAD 1.000139952E+00 1.000000000E+00 6.997095625E-05 | |
G( 2) BAD 9.006882668E+00 9.000000000E+00 6.877933629E-04 | |
G( 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE JACOBIAN C(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, 1) BAD 1.000139952E+00 1.000000000E+00 6.997095625E-05 | |
J( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
J( 1, 2) BAD 1.800770950E+01 1.800000000E+01 4.055987520E-04 | |
J( 2, 2) BAD -1.081258545E+02 -1.080000000E+02 1.153296791E-03 | |
J( 1, 3) BAD 2.101332092E+01 2.100000000E+01 6.051301025E-04 | |
J( 2, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 3, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 1, 2) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 2) BAD 3.182590637E+02 3.180000000E+02 8.114529774E-04 | |
H( 3, 2) BAD -1.200514030E+01 -1.200000000E+01 3.952517582E-04 | |
H( 1, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 3) BAD -1.200167942E+01 -1.200000000E+01 1.291695080E-04 | |
H( 3, 3) BAD -2.401374054E+01 -2.400000000E+01 5.493196659E-04 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 2 WRONG ENTRIES! | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 5 | |
checkH = T g_available = 1 verify_level = 2 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8013227463E+01 | |
1 3 2.1026470184E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 3.4527E-04 alpha = 2.2046E-03 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 6 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXPENSIVE VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( 1) BAD 1.000139952E+00 1.000000000E+00 6.997095625E-05 | |
G( 2) BAD 9.006882668E+00 9.000000000E+00 6.877933629E-04 | |
G( 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE JACOBIAN C(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, 1) BAD 1.000139952E+00 1.000000000E+00 6.997095625E-05 | |
J( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
J( 1, 2) BAD 1.800770950E+01 1.800000000E+01 4.055987520E-04 | |
J( 2, 2) BAD -1.081258545E+02 -1.080000000E+02 1.153296791E-03 | |
J( 1, 3) BAD 2.101332092E+01 2.100000000E+01 6.051301025E-04 | |
J( 2, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 2 WRONG ENTRIES! | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 5 | |
checkH = F g_available = 1 verify_level = 2 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000000E+01 | |
1 3 2.1000000000E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 3.4527E-04 alpha = 2.2046E-03 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXPENSIVE VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( 1) BAD 1.000139952E+00 1.000000000E+00 6.997095625E-05 | |
G( 2) BAD 9.006882668E+00 9.000000000E+00 6.877933629E-04 | |
G( 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 3, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 1, 2) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 2) BAD 3.182590637E+02 3.180000000E+02 8.114529774E-04 | |
H( 3, 2) BAD -1.200514030E+01 -1.200000000E+01 3.952517582E-04 | |
H( 1, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 3) BAD -1.200167942E+01 -1.200000000E+01 1.291695080E-04 | |
H( 3, 3) BAD -2.401374054E+01 -2.400000000E+01 5.493196659E-04 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 2 WRONG ENTRIES! | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = F c_available = 1 print_level = 5 | |
checkH = T g_available = 1 verify_level = 2 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8013227463E+01 | |
1 3 2.1026470184E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 3.4527E-04 alpha = 2.2046E-03 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXPENSIVE VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( 1) BAD 1.000139952E+00 1.000000000E+00 6.997095625E-05 | |
G( 2) BAD 9.006882668E+00 9.000000000E+00 6.877933629E-04 | |
G( 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 2 WRONG ENTRIES! | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = F c_available = 1 print_level = 5 | |
checkH = F g_available = 1 verify_level = 2 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8013227463E+01 | |
1 3 2.1026470184E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 3.4527E-04 alpha = 2.2046E-03 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXPENSIVE VERIFICATION OF THE JACOBIAN C(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, 1) BAD 1.000139952E+00 1.000000000E+00 6.997095625E-05 | |
J( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
J( 1, 2) BAD 1.800770950E+01 1.800000000E+01 4.055987520E-04 | |
J( 2, 2) BAD -1.081258545E+02 -1.080000000E+02 1.153296791E-03 | |
J( 1, 3) BAD 2.101332092E+01 2.100000000E+01 6.051301025E-04 | |
J( 2, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 3, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 1, 2) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 2) BAD 3.182590637E+02 3.180000000E+02 8.114529774E-04 | |
H( 3, 2) BAD -1.200514030E+01 -1.200000000E+01 3.952517582E-04 | |
H( 1, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 3) BAD -1.200167942E+01 -1.200000000E+01 1.291695080E-04 | |
H( 3, 3) BAD -2.401374054E+01 -2.400000000E+01 5.493196659E-04 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = F f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 5 | |
checkH = T g_available = 1 verify_level = 2 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8013227463E+01 | |
1 3 2.1026470184E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 3.4527E-04 alpha = 2.2046E-03 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXPENSIVE VERIFICATION OF THE JACOBIAN C(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, 1) BAD 1.000139952E+00 1.000000000E+00 6.997095625E-05 | |
J( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
J( 1, 2) BAD 1.800770950E+01 1.800000000E+01 4.055987520E-04 | |
J( 2, 2) BAD -1.081258545E+02 -1.080000000E+02 1.153296791E-03 | |
J( 1, 3) BAD 2.101332092E+01 2.100000000E+01 6.051301025E-04 | |
J( 2, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = F f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 5 | |
checkH = F g_available = 1 verify_level = 2 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000000E+01 | |
1 3 2.1000000000E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 3.4527E-04 alpha = 2.2046E-03 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXPENSIVE VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 3, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 1, 2) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 2) BAD 3.182590637E+02 3.180000000E+02 8.114529774E-04 | |
H( 3, 2) BAD -1.200514030E+01 -1.200000000E+01 3.952517582E-04 | |
H( 1, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 3) BAD -1.200167942E+01 -1.200000000E+01 1.291695080E-04 | |
H( 3, 3) BAD -2.401374054E+01 -2.400000000E+01 5.493196659E-04 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = F f_available = 1 deall_error_fatal = F | |
checkJ = F c_available = 1 print_level = 5 | |
checkH = T g_available = 1 verify_level = 2 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8013227463E+01 | |
1 3 2.1026470184E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 3.4527E-04 alpha = 2.2046E-03 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = F f_available = 1 deall_error_fatal = F | |
checkJ = F c_available = 1 print_level = 5 | |
checkH = F g_available = 1 verify_level = 2 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8013227463E+01 | |
1 3 2.1026470184E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 3.4527E-04 alpha = 2.2046E-03 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 7 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXPENSIVE VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( 1) BAD 1.000139952E+00 1.000000000E+00 6.997095625E-05 | |
G( 2) BAD 9.006882668E+00 9.000000000E+00 6.877933629E-04 | |
G( 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE JACOBIAN C(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, 1) BAD 1.000139952E+00 1.000000000E+00 6.997095625E-05 | |
J( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
J( 1, 2) BAD 1.800770950E+01 1.800000000E+01 4.055987520E-04 | |
J( 2, 2) BAD -1.081258545E+02 -1.080000000E+02 1.153296791E-03 | |
J( 1, 3) BAD 2.101332092E+01 2.100000000E+01 6.051301025E-04 | |
J( 2, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 3, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 1, 2) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 2) BAD 3.182590637E+02 3.180000000E+02 8.114529774E-04 | |
H( 3, 2) BAD -1.200514030E+01 -1.200000000E+01 3.952517582E-04 | |
H( 1, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 3) BAD -1.200167942E+01 -1.200000000E+01 1.291695080E-04 | |
H( 3, 3) BAD -2.401374054E+01 -2.400000000E+01 5.493196659E-04 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 2 WRONG ENTRIES! | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
XXX THERE APPEARS TO BE 4 WRONG ENTRIES! | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 5 | |
checkH = T g_available = 1 verify_level = 2 | |
error = 6 J_available = 3 out = 6 | |
H_available = 3 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8013227463E+01 | |
1 3 2.1026470184E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 3.4527E-04 alpha = 2.2046E-03 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 8 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXIT STATUS : -3 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXIT STATUS : -3 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXIT STATUS : -50 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXIT STATUS : -51 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXIT STATUS : -57 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 9 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 10 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 11 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 12 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 13 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
CHEAP VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( : ) BAD -2.665597916E+00 -2.666666746E+00 2.915842051E-04 | |
CHEAP VERIFICATION OF THE JACOBIAN J(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, : ) BAD 1.334096670E+00 1.333333492E+00 3.269692534E-04 | |
J( 2, : ) BAD 3.598081207E+01 3.600000000E+01 5.188616924E-04 | |
CHEAP VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, : ) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, : ) BAD -1.099531021E+02 -1.100000000E+02 4.226820893E-04 | |
H( 3, : ) BAD -4.002290249E+00 -4.000000000E+00 4.578400694E-04 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 2 | |
checkH = T g_available = 1 verify_level = 1 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
CHEAP VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( : ) BAD -2.665597916E+00 -2.666666746E+00 2.915842051E-04 | |
CHEAP VERIFICATION OF THE JACOBIAN J(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, : ) BAD 1.334096670E+00 1.333333492E+00 3.269692534E-04 | |
J( 2, : ) BAD 3.598081207E+01 3.600000000E+01 5.188616924E-04 | |
CHEAP VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, : ) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, : ) BAD -1.099531021E+02 -1.100000000E+02 4.226820893E-04 | |
H( 3, : ) BAD -4.002290249E+00 -4.000000000E+00 4.578400694E-04 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 3 | |
checkH = T g_available = 1 verify_level = 1 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.7999998093E+01 | |
1 3 2.1004411697E+01 | |
2 2 -1.0792066193E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
CHEAP VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( : ) BAD -2.665597916E+00 -2.666666746E+00 2.915842051E-04 | |
CHEAP VERIFICATION OF THE JACOBIAN J(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, : ) BAD 1.334096670E+00 1.333333492E+00 3.269692534E-04 | |
J( 2, : ) BAD 3.598081207E+01 3.600000000E+01 5.188616924E-04 | |
CHEAP VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, : ) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, : ) BAD -1.099531021E+02 -1.100000000E+02 4.226820893E-04 | |
H( 3, : ) BAD -4.002290249E+00 -4.000000000E+00 4.578400694E-04 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 4 | |
checkH = T g_available = 1 verify_level = 1 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.7999998093E+01 | |
1 3 2.1004411697E+01 | |
2 2 -1.0792066193E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 3.4527E-04 alpha = 2.2046E-03 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
CHEAP VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( : ) BAD -2.665597916E+00 -2.666666746E+00 2.915842051E-04 | |
CHEAP VERIFICATION OF THE JACOBIAN J(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, : ) BAD 1.334096670E+00 1.333333492E+00 3.269692534E-04 | |
J( 2, : ) BAD 3.598081207E+01 3.600000000E+01 5.188616924E-04 | |
CHEAP VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, : ) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, : ) BAD -1.099531021E+02 -1.100000000E+02 4.226820893E-04 | |
H( 3, : ) BAD -4.002290249E+00 -4.000000000E+00 4.578400694E-04 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 5 | |
checkH = T g_available = 1 verify_level = 1 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.7999998093E+01 | |
1 3 2.1004411697E+01 | |
2 2 -1.0792066193E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 3.4527E-04 alpha = 2.2046E-03 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 14 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
CHEAP VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( : ) BAD -2.665597916E+00 -2.666666746E+00 2.915842051E-04 | |
CHEAP VERIFICATION OF THE JACOBIAN J(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, : ) BAD 1.334096670E+00 1.333333492E+00 3.269692534E-04 | |
J( 2, : ) BAD 3.598081207E+01 3.600000000E+01 5.188616924E-04 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 5 | |
checkH = F g_available = 1 verify_level = 1 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000000E+01 | |
1 3 2.1000000000E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 3.4527E-04 alpha = 2.2046E-03 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
CHEAP VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( : ) BAD -2.665597916E+00 -2.666666746E+00 2.915842051E-04 | |
CHEAP VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, : ) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, : ) BAD -1.099531021E+02 -1.100000000E+02 4.226820893E-04 | |
H( 3, : ) BAD -4.002290249E+00 -4.000000000E+00 4.578400694E-04 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = F c_available = 1 print_level = 5 | |
checkH = T g_available = 1 verify_level = 1 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.7999998093E+01 | |
1 3 2.1004411697E+01 | |
2 2 -1.0792066193E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 3.4527E-04 alpha = 2.2046E-03 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
CHEAP VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( : ) BAD -2.665597916E+00 -2.666666746E+00 2.915842051E-04 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = F c_available = 1 print_level = 5 | |
checkH = F g_available = 1 verify_level = 1 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.7999998093E+01 | |
1 3 2.1004411697E+01 | |
2 2 -1.0792066193E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 3.4527E-04 alpha = 2.2046E-03 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
CHEAP VERIFICATION OF THE JACOBIAN J(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, : ) BAD 1.334096670E+00 1.333333492E+00 3.269692534E-04 | |
J( 2, : ) BAD 3.598081207E+01 3.600000000E+01 5.188616924E-04 | |
CHEAP VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, : ) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, : ) BAD -1.099531021E+02 -1.100000000E+02 4.226820893E-04 | |
H( 3, : ) BAD -4.002290249E+00 -4.000000000E+00 4.578400694E-04 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = F f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 5 | |
checkH = T g_available = 1 verify_level = 1 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.7999998093E+01 | |
1 3 2.1004411697E+01 | |
2 2 -1.0792066193E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 3.4527E-04 alpha = 2.2046E-03 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
CHEAP VERIFICATION OF THE JACOBIAN J(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, : ) BAD 1.334096670E+00 1.333333492E+00 3.269692534E-04 | |
J( 2, : ) BAD 3.598081207E+01 3.600000000E+01 5.188616924E-04 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = F f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 5 | |
checkH = F g_available = 1 verify_level = 1 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000000E+01 | |
1 3 2.1000000000E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 3.4527E-04 alpha = 2.2046E-03 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
CHEAP VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, : ) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, : ) BAD -1.099531021E+02 -1.100000000E+02 4.226820893E-04 | |
H( 3, : ) BAD -4.002290249E+00 -4.000000000E+00 4.578400694E-04 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = F f_available = 1 deall_error_fatal = F | |
checkJ = F c_available = 1 print_level = 5 | |
checkH = T g_available = 1 verify_level = 1 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.7999998093E+01 | |
1 3 2.1004411697E+01 | |
2 2 -1.0792066193E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 3.4527E-04 alpha = 2.2046E-03 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = F f_available = 1 deall_error_fatal = F | |
checkJ = F c_available = 1 print_level = 5 | |
checkH = F g_available = 1 verify_level = 1 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.7999998093E+01 | |
1 3 2.1004411697E+01 | |
2 2 -1.0792066193E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 3.4527E-04 alpha = 2.2046E-03 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 15 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
CHEAP VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( : ) BAD -2.665597916E+00 -2.666666746E+00 2.915842051E-04 | |
CHEAP VERIFICATION OF THE JACOBIAN J(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, : ) BAD 1.334096670E+00 1.333333492E+00 3.269692534E-04 | |
J( 2, : ) BAD 3.598081207E+01 3.600000000E+01 5.188616924E-04 | |
CHEAP VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, : ) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, : ) BAD -1.099531021E+02 -1.100000000E+02 4.226820893E-04 | |
H( 3, : ) BAD -4.002290249E+00 -4.000000000E+00 4.578400694E-04 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS --- [BAD] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS -- [BAD] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS --- [BAD] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 5 | |
checkH = T g_available = 1 verify_level = 1 | |
error = 6 J_available = 3 out = 6 | |
H_available = 3 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.7999998093E+01 | |
1 3 2.1004411697E+01 | |
2 2 -1.0792066193E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 3.4527E-04 alpha = 2.2046E-03 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 16 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXIT STATUS : -3 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXIT STATUS : -3 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXIT STATUS : -50 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXIT STATUS : -51 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXIT STATUS : -57 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 17 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------ | |
-- Summary of Results -- | |
------------------------ | |
Number Tested : 17 | |
Number Wrong : 37 | |
Wrong Vector : 1 2 3 4 5 5 5 5 5 5 5 6 6 6 6 6 6 7 9 10 11 12 13 13 13 13 13 13 13 14 14 14 14 14 14 15 17 | |
------------------------ | |
============================================================================== | |
=================================== 74/637 =================================== | |
test: GALAHAD:check+double+fortran / checkt_double | |
start time: 13:30:36 | |
duration: 0.06s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=197 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/checkt_double | |
----------------------------------- stdout ----------------------------------- | |
Beginning test number = 1 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 2 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 3 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 4 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 5 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXPENSIVE VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( 1) OK 9.999999891E-01 1.000000000E+00 5.437063107E-09 | |
G( 2) OK 9.000000276E+00 9.000000000E+00 2.755274155E-08 | |
G( 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE JACOBIAN C(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, 1) OK 9.999999891E-01 1.000000000E+00 5.437063107E-09 | |
J( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
J( 1, 2) OK 1.800000025E+01 1.800000000E+01 1.328101027E-08 | |
J( 2, 2) OK -1.080000049E+02 -1.080000000E+02 4.540609994E-08 | |
J( 1, 3) OK 2.100000052E+01 2.100000000E+01 2.356511149E-08 | |
J( 2, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 3, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 1, 2) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 2) OK 3.180000098E+02 3.180000000E+02 3.083032558E-08 | |
H( 3, 2) OK -1.200000017E+01 -1.200000000E+01 1.294047150E-08 | |
H( 1, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 3) OK -1.200000017E+01 -1.200000000E+01 1.294047150E-08 | |
H( 3, 3) OK -2.400000049E+01 -2.400000000E+01 1.943240311E-08 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 2 | |
checkH = T g_available = 1 verify_level = 2 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXPENSIVE VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( 1) OK 9.999999891E-01 1.000000000E+00 5.437063107E-09 | |
G( 2) OK 9.000000276E+00 9.000000000E+00 2.755274155E-08 | |
G( 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE JACOBIAN C(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, 1) OK 9.999999891E-01 1.000000000E+00 5.437063107E-09 | |
J( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
J( 1, 2) OK 1.800000025E+01 1.800000000E+01 1.328101027E-08 | |
J( 2, 2) OK -1.080000049E+02 -1.080000000E+02 4.540609994E-08 | |
J( 1, 3) OK 2.100000052E+01 2.100000000E+01 2.356511149E-08 | |
J( 2, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 3, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 1, 2) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 2) OK 3.180000098E+02 3.180000000E+02 3.083032558E-08 | |
H( 3, 2) OK -1.200000017E+01 -1.200000000E+01 1.294047150E-08 | |
H( 1, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 3) OK -1.200000017E+01 -1.200000000E+01 1.294047150E-08 | |
H( 3, 3) OK -2.400000049E+01 -2.400000000E+01 1.943240311E-08 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 3 | |
checkH = T g_available = 1 verify_level = 2 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000571E+01 | |
1 3 2.1000001142E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXPENSIVE VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( 1) OK 9.999999891E-01 1.000000000E+00 5.437063107E-09 | |
G( 2) OK 9.000000276E+00 9.000000000E+00 2.755274155E-08 | |
G( 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE JACOBIAN C(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, 1) OK 9.999999891E-01 1.000000000E+00 5.437063107E-09 | |
J( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
J( 1, 2) OK 1.800000025E+01 1.800000000E+01 1.328101027E-08 | |
J( 2, 2) OK -1.080000049E+02 -1.080000000E+02 4.540609994E-08 | |
J( 1, 3) OK 2.100000052E+01 2.100000000E+01 2.356511149E-08 | |
J( 2, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 3, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 1, 2) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 2) OK 3.180000098E+02 3.180000000E+02 3.083032558E-08 | |
H( 3, 2) OK -1.200000017E+01 -1.200000000E+01 1.294047150E-08 | |
H( 1, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 3) OK -1.200000017E+01 -1.200000000E+01 1.294047150E-08 | |
H( 3, 3) OK -2.400000049E+01 -2.400000000E+01 1.943240311E-08 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 4 | |
checkH = T g_available = 1 verify_level = 2 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000571E+01 | |
1 3 2.1000001142E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 1.4901E-08 alpha = 9.5146E-08 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXPENSIVE VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( 1) OK 9.999999891E-01 1.000000000E+00 5.437063107E-09 | |
G( 2) OK 9.000000276E+00 9.000000000E+00 2.755274155E-08 | |
G( 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE JACOBIAN C(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, 1) OK 9.999999891E-01 1.000000000E+00 5.437063107E-09 | |
J( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
J( 1, 2) OK 1.800000025E+01 1.800000000E+01 1.328101027E-08 | |
J( 2, 2) OK -1.080000049E+02 -1.080000000E+02 4.540609994E-08 | |
J( 1, 3) OK 2.100000052E+01 2.100000000E+01 2.356511149E-08 | |
J( 2, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 3, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 1, 2) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 2) OK 3.180000098E+02 3.180000000E+02 3.083032558E-08 | |
H( 3, 2) OK -1.200000017E+01 -1.200000000E+01 1.294047150E-08 | |
H( 1, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 3) OK -1.200000017E+01 -1.200000000E+01 1.294047150E-08 | |
H( 3, 3) OK -2.400000049E+01 -2.400000000E+01 1.943240311E-08 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 5 | |
checkH = T g_available = 1 verify_level = 2 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000571E+01 | |
1 3 2.1000001142E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 1.4901E-08 alpha = 9.5146E-08 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 6 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXPENSIVE VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( 1) OK 9.999999891E-01 1.000000000E+00 5.437063107E-09 | |
G( 2) OK 9.000000276E+00 9.000000000E+00 2.755274155E-08 | |
G( 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE JACOBIAN C(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, 1) OK 9.999999891E-01 1.000000000E+00 5.437063107E-09 | |
J( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
J( 1, 2) OK 1.800000025E+01 1.800000000E+01 1.328101027E-08 | |
J( 2, 2) OK -1.080000049E+02 -1.080000000E+02 4.540609994E-08 | |
J( 1, 3) OK 2.100000052E+01 2.100000000E+01 2.356511149E-08 | |
J( 2, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 5 | |
checkH = F g_available = 1 verify_level = 2 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000000E+01 | |
1 3 2.1000000000E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 1.4901E-08 alpha = 9.5146E-08 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXPENSIVE VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( 1) OK 9.999999891E-01 1.000000000E+00 5.437063107E-09 | |
G( 2) OK 9.000000276E+00 9.000000000E+00 2.755274155E-08 | |
G( 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 3, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 1, 2) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 2) OK 3.180000098E+02 3.180000000E+02 3.083032558E-08 | |
H( 3, 2) OK -1.200000017E+01 -1.200000000E+01 1.294047150E-08 | |
H( 1, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 3) OK -1.200000017E+01 -1.200000000E+01 1.294047150E-08 | |
H( 3, 3) OK -2.400000049E+01 -2.400000000E+01 1.943240311E-08 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = F c_available = 1 print_level = 5 | |
checkH = T g_available = 1 verify_level = 2 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000571E+01 | |
1 3 2.1000001142E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 1.4901E-08 alpha = 9.5146E-08 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXPENSIVE VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( 1) OK 9.999999891E-01 1.000000000E+00 5.437063107E-09 | |
G( 2) OK 9.000000276E+00 9.000000000E+00 2.755274155E-08 | |
G( 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = F c_available = 1 print_level = 5 | |
checkH = F g_available = 1 verify_level = 2 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000571E+01 | |
1 3 2.1000001142E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 1.4901E-08 alpha = 9.5146E-08 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXPENSIVE VERIFICATION OF THE JACOBIAN C(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, 1) OK 9.999999891E-01 1.000000000E+00 5.437063107E-09 | |
J( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
J( 1, 2) OK 1.800000025E+01 1.800000000E+01 1.328101027E-08 | |
J( 2, 2) OK -1.080000049E+02 -1.080000000E+02 4.540609994E-08 | |
J( 1, 3) OK 2.100000052E+01 2.100000000E+01 2.356511149E-08 | |
J( 2, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 3, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 1, 2) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 2) OK 3.180000098E+02 3.180000000E+02 3.083032558E-08 | |
H( 3, 2) OK -1.200000017E+01 -1.200000000E+01 1.294047150E-08 | |
H( 1, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 3) OK -1.200000017E+01 -1.200000000E+01 1.294047150E-08 | |
H( 3, 3) OK -2.400000049E+01 -2.400000000E+01 1.943240311E-08 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = F f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 5 | |
checkH = T g_available = 1 verify_level = 2 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000571E+01 | |
1 3 2.1000001142E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 1.4901E-08 alpha = 9.5146E-08 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXPENSIVE VERIFICATION OF THE JACOBIAN C(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, 1) OK 9.999999891E-01 1.000000000E+00 5.437063107E-09 | |
J( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
J( 1, 2) OK 1.800000025E+01 1.800000000E+01 1.328101027E-08 | |
J( 2, 2) OK -1.080000049E+02 -1.080000000E+02 4.540609994E-08 | |
J( 1, 3) OK 2.100000052E+01 2.100000000E+01 2.356511149E-08 | |
J( 2, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = F f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 5 | |
checkH = F g_available = 1 verify_level = 2 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000000E+01 | |
1 3 2.1000000000E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 1.4901E-08 alpha = 9.5146E-08 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXPENSIVE VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 3, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 1, 2) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 2) OK 3.180000098E+02 3.180000000E+02 3.083032558E-08 | |
H( 3, 2) OK -1.200000017E+01 -1.200000000E+01 1.294047150E-08 | |
H( 1, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 3) OK -1.200000017E+01 -1.200000000E+01 1.294047150E-08 | |
H( 3, 3) OK -2.400000049E+01 -2.400000000E+01 1.943240311E-08 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = F f_available = 1 deall_error_fatal = F | |
checkJ = F c_available = 1 print_level = 5 | |
checkH = T g_available = 1 verify_level = 2 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000571E+01 | |
1 3 2.1000001142E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 1.4901E-08 alpha = 9.5146E-08 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = F f_available = 1 deall_error_fatal = F | |
checkJ = F c_available = 1 print_level = 5 | |
checkH = F g_available = 1 verify_level = 2 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000571E+01 | |
1 3 2.1000001142E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 1.4901E-08 alpha = 9.5146E-08 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 7 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXPENSIVE VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( 1) OK 9.999999891E-01 1.000000000E+00 5.437063107E-09 | |
G( 2) OK 9.000000276E+00 9.000000000E+00 2.755274155E-08 | |
G( 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE JACOBIAN C(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, 1) OK 9.999999891E-01 1.000000000E+00 5.437063107E-09 | |
J( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
J( 1, 2) OK 1.800000025E+01 1.800000000E+01 1.328101027E-08 | |
J( 2, 2) OK -1.080000049E+02 -1.080000000E+02 4.540609994E-08 | |
J( 1, 3) OK 2.100000052E+01 2.100000000E+01 2.356511149E-08 | |
J( 2, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 3, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 1, 2) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 2) OK 3.180000098E+02 3.180000000E+02 3.083032558E-08 | |
H( 3, 2) OK -1.200000017E+01 -1.200000000E+01 1.294047150E-08 | |
H( 1, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 3) OK -1.200000017E+01 -1.200000000E+01 1.294047150E-08 | |
H( 3, 3) OK -2.400000049E+01 -2.400000000E+01 1.943240311E-08 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 5 | |
checkH = T g_available = 1 verify_level = 2 | |
error = 6 J_available = 3 out = 6 | |
H_available = 3 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000571E+01 | |
1 3 2.1000001142E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 1.4901E-08 alpha = 9.5146E-08 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 8 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXIT STATUS : -3 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXIT STATUS : -3 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXIT STATUS : -50 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXIT STATUS : -51 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXIT STATUS : -57 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 9 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 10 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 11 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 12 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 13 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
CHEAP VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( : ) OK -2.666666613E+00 -2.666666667E+00 1.469744748E-08 | |
CHEAP VERIFICATION OF THE JACOBIAN J(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, : ) OK 1.333333418E+00 1.333333333E+00 3.645987617E-08 | |
J( 2, : ) OK 3.599999916E+01 3.600000000E+01 2.269032514E-08 | |
CHEAP VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, : ) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, : ) OK -1.099999984E+02 -1.100000000E+02 1.481285926E-08 | |
H( 3, : ) OK -4.000000031E+00 -4.000000000E+00 6.236481337E-09 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 2 | |
checkH = T g_available = 1 verify_level = 1 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
CHEAP VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( : ) OK -2.666666613E+00 -2.666666667E+00 1.469744748E-08 | |
CHEAP VERIFICATION OF THE JACOBIAN J(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, : ) OK 1.333333418E+00 1.333333333E+00 3.645987617E-08 | |
J( 2, : ) OK 3.599999916E+01 3.600000000E+01 2.269032514E-08 | |
CHEAP VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, : ) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, : ) OK -1.099999984E+02 -1.100000000E+02 1.481285926E-08 | |
H( 3, : ) OK -4.000000031E+00 -4.000000000E+00 6.236481337E-09 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 3 | |
checkH = T g_available = 1 verify_level = 1 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000000E+01 | |
1 3 2.1000000190E+01 | |
2 2 -1.0799999657E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
CHEAP VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( : ) OK -2.666666613E+00 -2.666666667E+00 1.469744748E-08 | |
CHEAP VERIFICATION OF THE JACOBIAN J(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, : ) OK 1.333333418E+00 1.333333333E+00 3.645987617E-08 | |
J( 2, : ) OK 3.599999916E+01 3.600000000E+01 2.269032514E-08 | |
CHEAP VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, : ) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, : ) OK -1.099999984E+02 -1.100000000E+02 1.481285926E-08 | |
H( 3, : ) OK -4.000000031E+00 -4.000000000E+00 6.236481337E-09 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 4 | |
checkH = T g_available = 1 verify_level = 1 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000000E+01 | |
1 3 2.1000000190E+01 | |
2 2 -1.0799999657E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 1.4901E-08 alpha = 9.5146E-08 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
CHEAP VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( : ) OK -2.666666613E+00 -2.666666667E+00 1.469744748E-08 | |
CHEAP VERIFICATION OF THE JACOBIAN J(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, : ) OK 1.333333418E+00 1.333333333E+00 3.645987617E-08 | |
J( 2, : ) OK 3.599999916E+01 3.600000000E+01 2.269032514E-08 | |
CHEAP VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, : ) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, : ) OK -1.099999984E+02 -1.100000000E+02 1.481285926E-08 | |
H( 3, : ) OK -4.000000031E+00 -4.000000000E+00 6.236481337E-09 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 5 | |
checkH = T g_available = 1 verify_level = 1 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000000E+01 | |
1 3 2.1000000190E+01 | |
2 2 -1.0799999657E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 1.4901E-08 alpha = 9.5146E-08 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 14 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
CHEAP VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( : ) OK -2.666666613E+00 -2.666666667E+00 1.469744748E-08 | |
CHEAP VERIFICATION OF THE JACOBIAN J(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, : ) OK 1.333333418E+00 1.333333333E+00 3.645987617E-08 | |
J( 2, : ) OK 3.599999916E+01 3.600000000E+01 2.269032514E-08 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 5 | |
checkH = F g_available = 1 verify_level = 1 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000000E+01 | |
1 3 2.1000000000E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 1.4901E-08 alpha = 9.5146E-08 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
CHEAP VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( : ) OK -2.666666613E+00 -2.666666667E+00 1.469744748E-08 | |
CHEAP VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, : ) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, : ) OK -1.099999984E+02 -1.100000000E+02 1.481285926E-08 | |
H( 3, : ) OK -4.000000031E+00 -4.000000000E+00 6.236481337E-09 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = F c_available = 1 print_level = 5 | |
checkH = T g_available = 1 verify_level = 1 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000000E+01 | |
1 3 2.1000000190E+01 | |
2 2 -1.0799999657E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 1.4901E-08 alpha = 9.5146E-08 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
CHEAP VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( : ) OK -2.666666613E+00 -2.666666667E+00 1.469744748E-08 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = F c_available = 1 print_level = 5 | |
checkH = F g_available = 1 verify_level = 1 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000000E+01 | |
1 3 2.1000000190E+01 | |
2 2 -1.0799999657E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 1.4901E-08 alpha = 9.5146E-08 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
CHEAP VERIFICATION OF THE JACOBIAN J(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, : ) OK 1.333333418E+00 1.333333333E+00 3.645987617E-08 | |
J( 2, : ) OK 3.599999916E+01 3.600000000E+01 2.269032514E-08 | |
CHEAP VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, : ) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, : ) OK -1.099999984E+02 -1.100000000E+02 1.481285926E-08 | |
H( 3, : ) OK -4.000000031E+00 -4.000000000E+00 6.236481337E-09 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = F f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 5 | |
checkH = T g_available = 1 verify_level = 1 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000000E+01 | |
1 3 2.1000000190E+01 | |
2 2 -1.0799999657E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 1.4901E-08 alpha = 9.5146E-08 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
CHEAP VERIFICATION OF THE JACOBIAN J(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, : ) OK 1.333333418E+00 1.333333333E+00 3.645987617E-08 | |
J( 2, : ) OK 3.599999916E+01 3.600000000E+01 2.269032514E-08 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = F f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 5 | |
checkH = F g_available = 1 verify_level = 1 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000000E+01 | |
1 3 2.1000000000E+01 | |
2 2 -1.0800000000E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 1.4901E-08 alpha = 9.5146E-08 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
CHEAP VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, : ) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, : ) OK -1.099999984E+02 -1.100000000E+02 1.481285926E-08 | |
H( 3, : ) OK -4.000000031E+00 -4.000000000E+00 6.236481337E-09 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = F f_available = 1 deall_error_fatal = F | |
checkJ = F c_available = 1 print_level = 5 | |
checkH = T g_available = 1 verify_level = 1 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000000E+01 | |
1 3 2.1000000190E+01 | |
2 2 -1.0799999657E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 1.4901E-08 alpha = 9.5146E-08 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = F f_available = 1 deall_error_fatal = F | |
checkJ = F c_available = 1 print_level = 5 | |
checkH = F g_available = 1 verify_level = 1 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000000E+01 | |
1 3 2.1000000190E+01 | |
2 2 -1.0799999657E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 1.4901E-08 alpha = 9.5146E-08 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 15 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
CHEAP VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( : ) OK -2.666666613E+00 -2.666666667E+00 1.469744748E-08 | |
CHEAP VERIFICATION OF THE JACOBIAN J(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, : ) OK 1.333333418E+00 1.333333333E+00 3.645987617E-08 | |
J( 2, : ) OK 3.599999916E+01 3.600000000E+01 2.269032514E-08 | |
CHEAP VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, : ) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, : ) OK -1.099999984E+02 -1.100000000E+02 1.481285926E-08 | |
H( 3, : ) OK -4.000000031E+00 -4.000000000E+00 6.236481337E-09 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Cheap ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 5 | |
checkH = T g_available = 1 verify_level = 1 | |
error = 6 J_available = 3 out = 6 | |
H_available = 3 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
J%row J%col J%val | |
----- ----- ----------------- | |
1 1 1.0000000000E+00 | |
1 2 1.8000000000E+01 | |
1 3 2.1000000190E+01 | |
2 2 -1.0799999657E+02 | |
H%row H%col H%val | |
----- ----- ---------------- | |
2 2 3.1800000000E+02 | |
3 2 -1.2000000000E+01 | |
3 3 -2.4000000000E+01 | |
------------------------------------------------------------- | |
| PRIVATE DATA | | |
------------------------------------------------------------- | |
normx = 5.3852E+00 fd_len = 1.4901E-08 alpha = 9.5146E-08 | |
scale = 3.3333E-01 tol = 1.0000E-06 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 16 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXIT STATUS : -3 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXIT STATUS : -3 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXIT STATUS : -50 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXIT STATUS : -51 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXIT STATUS : -57 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 17 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------ | |
-- Summary of Results -- | |
------------------------ | |
Number Tested : 17 | |
Number Wrong : 0 | |
------------------------ | |
============================================================================== | |
=================================== 75/637 =================================== | |
test: GALAHAD:check+quadruple+fortran / checkt_quadruple | |
start time: 13:30:36 | |
duration: 0.06s | |
result: exit status 0 | |
command: LD_LIBRARY_PATH=/home/orban/dev/ralna/src/GALAHAD/builddir/:/home/orban/dev/ralna/lib: MALLOC_PERTURB_=224 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MESON_TEST_ITERATION=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 /home/orban/dev/ralna/src/GALAHAD/builddir/checkt_quadruple | |
----------------------------------- stdout ----------------------------------- | |
Beginning test number = 1 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 2 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 3 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 4 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
Beginning test number = 5 | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
------------------------------------------------------------------------------ | |
-------------------- BEGIN: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
EXPENSIVE VERIFICATION OF THE GRADIENT G(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
G( 1) OK 1.000000000E+00 1.000000000E+00 5.465856385E-18 | |
G( 2) OK 9.000000000E+00 9.000000000E+00 3.015279833E-17 | |
G( 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE JACOBIAN C(X) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
J( 1, 1) OK 1.000000000E+00 1.000000000E+00 2.285339544E-17 | |
J( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
J( 1, 2) OK 1.800000000E+01 1.800000000E+01 1.526738230E-17 | |
J( 2, 2) OK -1.080000000E+02 -1.080000000E+02 4.659531267E-17 | |
J( 1, 3) OK 2.100000000E+01 2.100000000E+01 2.592094674E-17 | |
J( 2, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
EXPENSIVE VERIFICATION OF THE HESSIAN H(X,Y) | |
Component Ok Difference Value Error | |
-------------- --- ---------------- ---------------- ---------------- | |
H( 1, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 3, 1) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 1, 2) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 2) OK 3.180000000E+02 3.180000000E+02 3.379779738E-17 | |
H( 3, 2) OK -1.200000000E+01 -1.200000000E+01 1.665924830E-17 | |
H( 1, 3) OK 0.000000000E+00 0.000000000E+00 0.000000000E+00 | |
H( 2, 3) OK -1.200000000E+01 -1.200000000E+01 6.092122461E-19 | |
H( 3, 3) OK -2.400000000E+01 -2.400000000E+01 2.288963073E-17 | |
--------------------------------------------------- | |
| SUMMARY | | |
| ( Verify : Expensive ) | | |
--------------------------------------------------- | |
THE GRADIENT OF THE OBJECTIVE FUNCTION IS ---- [OK] | |
THE JACOBIAN OF THE CONSTRAINT FUNCTION IS --- [OK] | |
THE HESSIAN OF THE LAGRANGIAN FUNCTION IS ---- [OK] | |
------------------------------------------------------- | |
| CONTROL PARAMETERS | | |
------------------------------------------------------- | |
checkG = T f_available = 1 deall_error_fatal = F | |
checkJ = T c_available = 1 print_level = 2 | |
checkH = T g_available = 1 verify_level = 2 | |
error = 6 J_available = 1 out = 6 | |
H_available = 1 | |
---------------------------------------------- | |
| MATRIX DATA | | |
---------------------------------------------- | |
J%type --- COORDINATE | |
J%id --- Toy 2x3 matrix | |
H%type --- COORDINATE | |
H%id --- Toy 3x3 hessian matrix | |
m = 2 | |
n = 3 | |
EXIT STATUS : 0 | |
------------------------------------------------------------------------------ | |
-------------------- END: CHECK_verify -------------------- | |
------------------------------------------------------------------------------ | |
-------------------------------------------------------------- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment