Ignore:
Timestamp:
12/11/20 21:36:41 (3 years ago)
Author:
Maciej Komosinski
Message:

SimilMeasure? -> SimilMeasureBase?; introduced a new class (SimilMeasure?) that allows scripts to access all similarity measures; a number of minor fixes and improvements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/model/similarity/measure-greedy.cpp

    r1044 r1048  
    44
    55#include "measure-greedy.h"
     6#include <assert.h>
    67
    78#define DB(x)  //define as x if you want to print debug information
    89
    910const int SimilMeasureGreedy::iNOFactors = 4;
    10 int fuzzDepth = 0; //TODO make local, but "fuzzy vertex degree" is not activated by default
     11int fuzzDepth = 0; //TODO make local, but not crucial because currently "fuzzy vertex degree" is not activated by default
    1112
    1213#define FIELDSTRUCT SimilMeasureGreedy
     
    2021                { "simil_fixedZaxis", 0, 0, "Fix 'z' (vertical) axis?", "d 0 1 0", FIELD(fixedZaxis), "", },
    2122                { "simil_weightedMDS", 0, 0, "Should weighted MDS be used?", "d 0 1 0", FIELD(wMDS), "If activated, weighted MDS with vertex (i.e., Part) degrees as weights is used for 3D alignment of body structure.", },
    22                 { "evaluateDistance", 0, PARAM_DONTSAVE | PARAM_USERHIDDEN, "evaluate model dissimilarity", "p f(oGeno,oGeno)", PROCEDURE(p_evaldistance), "Calculates dissimilarity between two models created from Geno objects.", },
     23                { "evaluateDistance", 0, PARAM_DONTSAVE | PARAM_USERHIDDEN, "Evaluate model dissimilarity", "p f(oGeno,oGeno)", PROCEDURE(p_evaldistance), "Calculates dissimilarity between two models created from Geno objects.", },
    2324                { 0, },
    2425};
Note: See TracChangeset for help on using the changeset viewer.