Ignore:
Timestamp:
05/04/19 23:39:39 (5 years ago)
Author:
Maciej Komosinski
Message:

Fixed error messages, changed int to paInt (for 32/64-bit safety), changed two int variables to bool as they should be

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/model/similarity/simil_model.h

    r870 r872  
    7777        /// Currently selected matching algorithm. Allowed values: 0 (more exact, slower), 1 (more greedy, faster). Details in https://doi.org/10.1007/978-3-030-16692-2_8
    7878        /// @sa EvaluateDistance
    79         int matching_method;
     79        paInt matching_method;
    8080
    8181        /// Table of weights for weighted distance function.
     
    8989
    9090        //for Zfixed = 1, the "z" (vertical) coordinates are not taken into account during PCA alignment
    91         int fixedZaxis;
     91        paInt fixedZaxis;
    9292
    9393        //Controls the depth of fuzzy neighbourhood
    9494        int fuzzyDepth;
    95         int isFuzzy;
     95        bool isFuzzy;
    9696
    9797        //For wMDS = 1 weighted MDS with vertex degrees as weights is used for the alignment.
    98         int wMDS;
     98        paInt wMDS;
    9999
    100100        //For saveMatching = 1 the best matching found will be saved.
    101         int saveMatching;
     101        bool saveMatching;
    102102
    103103        /// Interface to local parameters
Note: See TracChangeset for help on using the changeset viewer.