Skip to content

Commit

Permalink
remove c-side unicode mu (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
goulart-paul authored Feb 27, 2024
1 parent e584b9a commit 223bd8c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions include/c/DefaultInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// ClarabelDefaultInfo types
typedef struct ClarabelDefaultInfo_f64
{
double μ;
double mu;
double sigma;
double step_length;
uint32_t iterations;
Expand All @@ -28,7 +28,7 @@ typedef struct ClarabelDefaultInfo_f64

typedef struct ClarabelDefaultInfo_f32
{
float μ;
float mu;
float sigma;
float step_length;
uint32_t iterations;
Expand Down
2 changes: 1 addition & 1 deletion include/cpp/DefaultInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ struct DefaultInfo
{
static_assert(std::is_same<T, float>::value || std::is_same<T, double>::value, "T must be float or double");

T μ;
T mu;
T sigma;
T step_length;
uint32_t iterations;
Expand Down

0 comments on commit 223bd8c

Please sign in to comment.