QPALM
A proximal augmented Lagrangian method for QPs.
scaling.h
Go to the documentation of this file.
1 
11 #ifndef SCALING_H
12 # define SCALING_H
13 
14 # ifdef __cplusplus
15 extern "C" {
16 # endif // ifdef __cplusplus
17 
18 // Functions to scale problem data
19 # include "types.h"
20 # include "lin_alg.h"
21 # include "constants.h"
22 
23 
44 void scale_data(QPALMWorkspace *work);
45 
46 # ifdef __cplusplus
47 }
48 # endif // ifdef __cplusplus
49 
50 #endif // ifndef SCALING_H
Internal data structures used in QPALM.
Constants used in QPALM.
Linear algebra with vectors.
QPALM Workspace.
Definition: types.h:197
void scale_data(QPALMWorkspace *work)
Scale problem matrices.
Definition: scaling.c:34