QPALM 1.1.0
Proximal Augmented Lagrangian method for Quadratic Programs
Functions
qpalm.h File Reference

Detailed Description

QPALM main solver API.

Author
Ben Hermans

This file contains the main functions that can be called by the user. The user can load the default settings, setup the workspace with data and settings, warm_start the primal and dual variables, run the solver, update the settings, bounds and linear part of the cost, and finally cleanup the workspace afterwards.

Definition in file qpalm.h.

#include "constants.h"
#include "global_opts.h"
#include "iteration.h"
#include "lin_alg.h"
#include "linesearch.h"
#include "newton.h"
#include "nonconvex.h"
#include "scaling.h"
#include "solver_interface.h"
#include "termination.h"
#include "types.h"
#include "util.h"
#include "validate.h"
+ Include dependency graph for qpalm.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

QPALM_EXPORT void qpalm_set_default_settings (QPALMSettings *settings)
 Set default settings from constants.h file. More...
 
QPALM_EXPORT QPALMWorkspaceqpalm_setup (const QPALMData *data, const QPALMSettings *settings)
 Initialize QPALM solver allocating memory. More...
 
QPALM_EXPORT void qpalm_warm_start (QPALMWorkspace *work, const c_float *x_warm_start, const c_float *y_warm_start)
 Warm start workspace variables x, x_0, x_prev, Ax, Qx, y and sigma. More...
 
QPALM_EXPORT void qpalm_solve (QPALMWorkspace *work)
 Solve the quadratic program. More...
 
QPALM_EXPORT void qpalm_update_settings (QPALMWorkspace *work, const QPALMSettings *settings)
 Update the settings to the new settings. More...
 
QPALM_EXPORT void qpalm_update_bounds (QPALMWorkspace *work, const c_float *bmin, const c_float *bmax)
 Update the lower and upper bounds. More...
 
QPALM_EXPORT void qpalm_update_q (QPALMWorkspace *work, const c_float *q)
 Update the linear part of the cost. More...
 
QPALM_EXPORT void qpalm_update_Q_A (QPALMWorkspace *work, const c_float *Qx, const c_float *Ax)
 Update the matrix entries of Q and A. More...
 
QPALM_EXPORT void qpalm_cleanup (QPALMWorkspace *work)
 Cleanup the workspace by deallocating memory. More...