Skip to content

Commit

Permalink
reorder JSON output fields
Browse files Browse the repository at this point in the history
  • Loading branch information
goulart-paul committed Jun 3, 2024
1 parent 5b6760e commit d1ca25d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/solver/implementations/default/json.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ use std::{fs::File, io, io::Read};
#[derive(Serialize, Deserialize)]
#[serde(bound = "T: Serialize + DeserializeOwned")]
struct JsonProblemData<T: FloatT> {
pub settings: DefaultSettings<T>,
pub P: CscMatrix<T>,
pub q: Vec<T>,
pub A: CscMatrix<T>,
pub b: Vec<T>,
pub cones: Vec<SupportedConeT<T>>,
pub settings: DefaultSettings<T>,
}

impl<T> SolverJSONReadWrite for DefaultSolver<T>
Expand Down

0 comments on commit d1ca25d

Please sign in to comment.