Skip to content

Commit 93ed86f

Browse files
committed
Cargo fmt & clippy
1 parent 17978fe commit 93ed86f

File tree

3 files changed

+20
-11
lines changed

3 files changed

+20
-11
lines changed

src/model.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ impl<S: ModelStageWithProblem> ModelWithProblem for Model<S> {
562562
})
563563
.collect()
564564
}
565-
565+
566566
/// Returns a vector of all original variables in the optimization model.
567567
fn orig_vars(&self) -> Vec<Variable> {
568568
let scip_vars = self.scip.vars(true, false);

src/param.rs

+13-4
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,15 @@ mod tests {
7676
#[test]
7777
fn test_i64() {
7878
let model = Model::default();
79-
assert_eq!(model.param::<i64>("constraints/components/nodelimit"), 10000i64);
79+
assert_eq!(
80+
model.param::<i64>("constraints/components/nodelimit"),
81+
10000i64
82+
);
8083
let model = model.set_param("constraints/components/nodelimit", 100i64);
81-
assert_eq!(model.param::<i64>("constraints/components/nodelimit"), 100i64);
84+
assert_eq!(
85+
model.param::<i64>("constraints/components/nodelimit"),
86+
100i64
87+
);
8288
}
8389

8490
#[test]
@@ -102,6 +108,9 @@ mod tests {
102108
let model = Model::default();
103109
assert_eq!(model.param::<String>("visual/vbcfilename"), "-".to_string());
104110
let model = model.set_param("visual/vbcfilename", "test".to_string());
105-
assert_eq!(model.param::<String>("visual/vbcfilename"), "test".to_string());
111+
assert_eq!(
112+
model.param::<String>("visual/vbcfilename"),
113+
"test".to_string()
114+
);
106115
}
107-
}
116+
}

src/variable.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -108,32 +108,32 @@ impl Variable {
108108
pub fn is_deleted(&self) -> bool {
109109
unsafe { ffi::SCIPvarIsDeleted(self.raw) != 0 }
110110
}
111-
111+
112112
/// Returns whether the variable is transformed.
113113
pub fn is_transformed(&self) -> bool {
114114
unsafe { ffi::SCIPvarIsTransformed(self.raw) != 0 }
115115
}
116-
116+
117117
/// Returns whether the variable is original.
118118
pub fn is_original(&self) -> bool {
119119
unsafe { ffi::SCIPvarIsOriginal(self.raw) != 0 }
120120
}
121-
121+
122122
/// Returns whether the variable is negated.
123123
pub fn is_negated(&self) -> bool {
124124
unsafe { ffi::SCIPvarIsNegated(self.raw) != 0 }
125125
}
126-
126+
127127
/// Returns whether the variable is removable (due to aging in the LP).
128128
pub fn is_removable(&self) -> bool {
129129
unsafe { ffi::SCIPvarIsRemovable(self.raw) != 0 }
130130
}
131-
131+
132132
/// Returns whether the variable is a directed counterpart of an original variable.
133133
pub fn is_trans_from_orig(&self) -> bool {
134134
unsafe { ffi::SCIPvarIsTransformedOrigvar(self.raw) != 0 }
135135
}
136-
136+
137137
/// Returns whether the variable is active (i.e., neither fixed nor aggregated).
138138
pub fn is_active(&self) -> bool {
139139
unsafe { ffi::SCIPvarIsActive(self.raw) != 0 }

0 commit comments

Comments
 (0)