Free cookie consent management tool by TermsFeed Policy Generator

Changes between Version 22 and Version 83 of Ticket #2174


Ignore:
Timestamp:
02/05/15 10:19:59 (9 years ago)
Author:
abeham
Comment:

r11899:

  • Added regions to structure code
  • Added compile call to the default creator

r11900:

  • Removed compilation calls from the problem (AfterDeserialization and in cloning constructor) and instead compile instance lazily when accessed
  • Compile support code in ExternalEvaluationProblem lazy
  • Fixed encoding class names in template code files (forgot to add vector)

I think lazily compiling here is more user friendly. There could be more or less complex code running during initialize() when e.g. input data are processed into data that is required for evaluation. If that compilation step is done for every clone operation, I think it would be too much.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2174

    • Property Status changed from accepted to reviewing
    • Property Component changed from ### Undefined ### to Optimization
  • Ticket #2174 – Description

    v22 v83  
    11A programmable optimization problem should be created that allows to define parameter vector and evaluation function in an easy way. This will build upon the scripting feature.
    2 
    3 Open points and Todos:
    4  * Extract the parameter vector again to a separate multi-vector or combined encoding -> an own plugin?
    5  * Support for tabu search!?