Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion FATCATMain/AFP.h
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class AFP
}

//assign a given afp to this
void operator = (AFP &afp)
void operator = (const AFP &afp)
{
i = afp.i;
j = afp.j;
Expand Down
1 change: 1 addition & 0 deletions FATCATMain/Align0.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
//2. a similarity matrix (any type, eg. defined by structural similarity)
#ifndef ALIGN0_H
#define ALIGN0_H
#include <cstring>
#include "basic.h"

class ALIGN0
Expand Down