ryanjoneil / SCIP.jl

(deprecated) Julia interface to the SCIP solver
MIT License
2 stars 4 forks source link

Xml changes #15

Closed joehuchette closed 10 years ago

joehuchette commented 10 years ago

I changed the parsing code so that both tests pass (modulo an error in the finalizer in test.jl). I removed the type annotations for the _SCIP* family of functions because they were too strict for the SPtr approach my python skills aren't quite strong enough to figure out how to drop the annotations for only those arguments that would cause issues.

ryanjoneil commented 10 years ago

Thanks! If you can guide me a bit as to which arguments should use type annotations and which should not, I'll try and get that into the parser.

joehuchette commented 10 years ago

I'm not sure type annotations are necessary for the low-level wrappers, since they'll error out if a convert method doesn't exist for each argument to the correct type. I could be wrong, though.