Ignore:
Timestamp:
12/10/20 22:33:22 (3 years ago)
Author:
oriona
Message:

Similarity measures code refactored. Distribution-based similarity measure added.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • cpp/frams/model/similarity/simil-match.h

    r1043 r1044  
    11// This file is a part of Framsticks SDK.  http://www.framsticks.com/
    2 // Copyright (C) 1999-2019  Maciej Komosinski and Szymon Ulatowski.
     2// Copyright (C) 1999-2020  Maciej Komosinski and Szymon Ulatowski.
    33// See LICENSE.txt for details.
    44
     
    2626        SimilMatching(const SimilMatching &Source);
    2727        ~SimilMatching();
    28         int GetObjectSize(int Obj);
    29         void Match(int Obj0, int Index0, int Obj1, int Index1);
    30         bool IsMatched(int Obj, int Index);
    31         int GetMatchedIndex(int Obj, int index);
    32         bool IsFull();
    33         bool IsEmpty();
    34         void Empty();
    35         void PrintMatching();
     28        int getObjectSize(int Obj);
     29        void match(int Obj0, int Index0, int Obj1, int Index1);
     30        bool isMatched(int Obj, int Index);
     31        int getMatchedIndex(int Obj, int index);
     32        bool isFull();
     33        bool isEmpty();
     34        void empty();
     35        void printMatching();
    3636};
    3737
Note: See TracChangeset for help on using the changeset viewer.