1
- use crate :: { ffi, Model , Solving } ;
1
+ use crate :: scip:: ScipPtr ;
2
+ use crate :: { ffi, Model , Solving , Variable } ;
3
+ use scip_sys:: SCIPeventGetVar ;
2
4
use std:: ops:: { BitOr , BitOrAssign } ;
5
+ use std:: rc:: Rc ;
3
6
4
7
/// Trait used to define custom event handlers.
5
8
pub trait Eventhdlr {
@@ -201,6 +204,7 @@ impl SCIPEventhdlr {
201
204
/// Wrapper for the internal SCIP event.
202
205
pub struct Event {
203
206
pub ( crate ) raw : * mut ffi:: SCIP_EVENT ,
207
+ pub ( crate ) scip : Rc < ScipPtr > ,
204
208
}
205
209
206
210
impl Event {
@@ -214,6 +218,23 @@ impl Event {
214
218
let event_type = unsafe { ffi:: SCIPeventGetType ( self . raw ) } ;
215
219
EventMask ( event_type)
216
220
}
221
+
222
+ /// Returns the associated variable for a variable event
223
+ pub fn var ( & self ) -> Option < Variable > {
224
+ if self
225
+ . event_type ( )
226
+ . matches ( EventMask :: VAR_EVENT | EventMask :: VAR_FIXED | EventMask :: VAR_DELETED )
227
+ {
228
+ let var_ptr = unsafe { SCIPeventGetVar ( self . raw ) } ;
229
+ assert ! ( !var_ptr. is_null( ) ) ;
230
+ Some ( Variable {
231
+ raw : var_ptr,
232
+ scip : self . scip . clone ( ) ,
233
+ } )
234
+ } else {
235
+ None
236
+ }
237
+ }
217
238
}
218
239
219
240
#[ cfg( test) ]
@@ -278,6 +299,7 @@ mod tests {
278
299
) {
279
300
assert ! ( self . get_type( ) . matches( event. event_type( ) ) ) ;
280
301
assert_eq ! ( eventhdlr. name( ) , "InternalSCIPEventHdlrTester" ) ;
302
+ assert ! ( event. var( ) . is_none( ) )
281
303
}
282
304
}
283
305
0 commit comments