Changeset 17173 for stable/HeuristicLab.ExtLibs/HeuristicLab.OrTools
- Timestamp:
- 07/23/19 21:39:31 (5 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.ExtLibs
- Property svn:mergeinfo changed
/trunk/HeuristicLab.ExtLibs merged: 16940
- Property svn:mergeinfo changed
-
stable/HeuristicLab.ExtLibs/HeuristicLab.OrTools/7.0.0/HeuristicLab.OrTools-7.0.0/Plugin.cs.frame
r16910 r17173 38 38 public class HeuristicLabOrToolsPlugin : PluginBase { 39 39 40 public override void OnUnload() { 41 // HACK: free handle to native DLL used temporarily by the Hive Slave 42 // should be solved for all native DLLs used by the Hive Slave 40 ~HeuristicLabOrToolsPlugin() { 41 // HACK: Free handle to native DLL used temporarily by the Hive Slave. 42 // Finalizer must be used because generated finalizers used in 43 // HeuristicLab.ExactOptimization that call destructors in native DLL 44 // are called after HeuristicLabOrToolsPlugin.OnUnload(). 45 // This should be solved for all native DLLs used by the Hive Slave. 43 46 var dllDir = new FileInfo(GetType().Assembly.Location).Directory; 44 47 if (dllDir == null || !dllDir.FullName.Contains(Path.DirectorySeparatorChar + "PluginTemp" + Path.DirectorySeparatorChar))
Note: See TracChangeset
for help on using the changeset viewer.