gctl_optimization/README.md
2024-09-10 20:04:47 +08:00

17 lines
403 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## lcg_solver 共轭梯度求解器
### 求解器参数设置
#### 1. 从toml文件读取参数
用户可以从toml文件中读取并设置求解器参数。所有的参数都定义在名为lcg的顶级表格下可设置的参数及类型如下所示
```toml
[lcg]
max_iterations=<int>
epsilon=<float>
abs_diff=0|1
restart_epsilon=<float>
step=<float>
sigma=<float>
beta=<float>
maxi_m=<int>
```