Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
reednel committed Jan 17, 2024
1 parent 342d487 commit f11123a
Show file tree
Hide file tree
Showing 11 changed files with 538 additions and 451 deletions.
2 changes: 1 addition & 1 deletion include/file_io.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#ifndef FILEIO_H
#ifndef FILEIO_H
#define FILEIO_H

namespace FileIO
Expand Down
4 changes: 2 additions & 2 deletions include/gdvs_dist.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#ifndef GDVSDIST_H
#ifndef GDVSDIST_H
#define GDVSDIST_H

namespace GDVs_Dist
{
std::vector<std::vector<double>> gdvs_dist(std::vector<std::vector<unsigned>>, std::vector<std::vector<unsigned>>, double);
std::vector<std::vector<double>> gdvs_dist(std::vector<std::vector<unsigned>>, std::vector<std::vector<unsigned>>, double);
}

#endif
2 changes: 1 addition & 1 deletion include/graphcrunch.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ namespace GraphCrunch
{
std::vector<std::vector<unsigned>> graphcrunch(std::string);
}

#endif
2 changes: 1 addition & 1 deletion include/hungarian.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ namespace Hungarian
{
std::vector<std::vector<double>> hungarian(std::vector<std::vector<double>>);
}

#endif
4 changes: 2 additions & 2 deletions include/util.h
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#ifndef UTIL_H
#ifndef UTIL_H
#define UTIL_H

namespace Util
{
std::string now();
std::string to_string(double, int);
std::vector<std::string> parse_args(int, char**);
std::vector<std::string> parse_args(int, char **);
std::vector<std::vector<unsigned>> binarify(std::vector<std::vector<double>>);
std::vector<std::vector<double>> normalize(std::vector<std::vector<double>>);
std::vector<std::vector<double>> one_minus(std::vector<std::vector<double>>);
Expand Down
Loading

0 comments on commit f11123a

Please sign in to comment.