1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef SCALING_H
- # define SCALING_H
- # ifdef __cplusplus
- extern "C" {
- # endif
- # include "types.h"
- # include "lin_alg.h"
- # include "constants.h"
- # if EMBEDDED != 1
- c_int scale_data(OSQPWorkspace *work);
- # endif
- c_int unscale_data(OSQPWorkspace *work);
- c_int unscale_solution(OSQPWorkspace *work);
- # ifdef __cplusplus
- }
- # endif
- #endif
|