File tree 3 files changed +20
-11
lines changed
3 files changed +20
-11
lines changed Original file line number Diff line number Diff line change @@ -562,7 +562,7 @@ impl<S: ModelStageWithProblem> ModelWithProblem for Model<S> {
562
562
} )
563
563
. collect ( )
564
564
}
565
-
565
+
566
566
/// Returns a vector of all original variables in the optimization model.
567
567
fn orig_vars ( & self ) -> Vec < Variable > {
568
568
let scip_vars = self . scip . vars ( true , false ) ;
Original file line number Diff line number Diff line change @@ -76,9 +76,15 @@ mod tests {
76
76
#[ test]
77
77
fn test_i64 ( ) {
78
78
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
+ ) ;
80
83
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
+ ) ;
82
88
}
83
89
84
90
#[ test]
@@ -102,6 +108,9 @@ mod tests {
102
108
let model = Model :: default ( ) ;
103
109
assert_eq ! ( model. param:: <String >( "visual/vbcfilename" ) , "-" . to_string( ) ) ;
104
110
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
+ ) ;
106
115
}
107
- }
116
+ }
Original file line number Diff line number Diff line change @@ -108,32 +108,32 @@ impl Variable {
108
108
pub fn is_deleted ( & self ) -> bool {
109
109
unsafe { ffi:: SCIPvarIsDeleted ( self . raw ) != 0 }
110
110
}
111
-
111
+
112
112
/// Returns whether the variable is transformed.
113
113
pub fn is_transformed ( & self ) -> bool {
114
114
unsafe { ffi:: SCIPvarIsTransformed ( self . raw ) != 0 }
115
115
}
116
-
116
+
117
117
/// Returns whether the variable is original.
118
118
pub fn is_original ( & self ) -> bool {
119
119
unsafe { ffi:: SCIPvarIsOriginal ( self . raw ) != 0 }
120
120
}
121
-
121
+
122
122
/// Returns whether the variable is negated.
123
123
pub fn is_negated ( & self ) -> bool {
124
124
unsafe { ffi:: SCIPvarIsNegated ( self . raw ) != 0 }
125
125
}
126
-
126
+
127
127
/// Returns whether the variable is removable (due to aging in the LP).
128
128
pub fn is_removable ( & self ) -> bool {
129
129
unsafe { ffi:: SCIPvarIsRemovable ( self . raw ) != 0 }
130
130
}
131
-
131
+
132
132
/// Returns whether the variable is a directed counterpart of an original variable.
133
133
pub fn is_trans_from_orig ( & self ) -> bool {
134
134
unsafe { ffi:: SCIPvarIsTransformedOrigvar ( self . raw ) != 0 }
135
135
}
136
-
136
+
137
137
/// Returns whether the variable is active (i.e., neither fixed nor aggregated).
138
138
pub fn is_active ( & self ) -> bool {
139
139
unsafe { ffi:: SCIPvarIsActive ( self . raw ) != 0 }
You can’t perform that action at this time.
0 commit comments