Skip to content

Commit 223bd8c

Browse files
authored
remove c-side unicode mu (#29)
1 parent e584b9a commit 223bd8c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

include/c/DefaultInfo.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// ClarabelDefaultInfo types
1010
typedef struct ClarabelDefaultInfo_f64
1111
{
12-
double μ;
12+
double mu;
1313
double sigma;
1414
double step_length;
1515
uint32_t iterations;
@@ -28,7 +28,7 @@ typedef struct ClarabelDefaultInfo_f64
2828

2929
typedef struct ClarabelDefaultInfo_f32
3030
{
31-
float μ;
31+
float mu;
3232
float sigma;
3333
float step_length;
3434
uint32_t iterations;

include/cpp/DefaultInfo.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ struct DefaultInfo
1313
{
1414
static_assert(std::is_same<T, float>::value || std::is_same<T, double>::value, "T must be float or double");
1515

16-
T μ;
16+
T mu;
1717
T sigma;
1818
T step_length;
1919
uint32_t iterations;

0 commit comments

Comments
 (0)