csocp_iter.h 434 B

1234567891011121314151617181920212223
  1. /**
  2. * @file csocp_iter.h
  3. * @brief 迭代(iterative)模块
  4. * This file implements iterative module.
  5. * @version 0.1
  6. * @date 2021-09-17
  7. *
  8. * @copyright Copyright (c) 2021
  9. *
  10. */
  11. #ifndef __CSOCP_ITER_H__
  12. #define __COSPC_ITER_H__
  13. #include "csocp_config.h"
  14. /** 更新属性 Update attributes */
  15. void c_iter_updateattr(csocp_prob *prob);
  16. /** 更新KKT系统 Update KKT system */
  17. c_int c_iter_updatekkt(csocp_prob *prob);
  18. #endif