Changes between Version 10 and Version 11 of Documentation/DevelopmentCenter/IntegrateHeuristicLab
- Timestamp:
- 01/29/20 16:42:44 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Documentation/DevelopmentCenter/IntegrateHeuristicLab
v10 v11 123 123 Note that in HeuristicLab 3.3.14 and earlier the Start() method was non-blocking and you have to use a WaitHandle such as an [https://msdn.microsoft.com/en-us/library/system.threading.autoresetevent(v=vs.110).aspx AutoResetEvent] to avoid terminating the application prematurely. 124 124 125 == Performance issues with garbage collector == 126 HeuristicLab uses the server GC instead of the workstation GC because we have observed that the HL runs faster with server GC. This can be enabled in the App.config file of your application. Simply add 127 {{{ 128 <runtime> 129 <gcServer enabled="true" /> 130 </runtime> 131 }}} 125 132 133 to the {{{<configuration>}}} section.