cvxgrp / qcml

A Python parser for generating Python/C/Matlab solver interfaces
Other
42 stars 9 forks source link

The solution struct: _sol and _vars #46

Closed alexvoronov closed 10 years ago

alexvoronov commented 10 years ago

I see that in src/codegens/C/stuff_template.h, the solution struct is defined with both _sol and _vars:

typedef struct %(name)s_sol {
%(variables)s
} %(name)s_vars;

Maybe _sol can be changed to _vars (or the other way around) for consistency?