Skip to content

Commit

Permalink
added a logger
Browse files Browse the repository at this point in the history
  • Loading branch information
fran committed May 31, 2024
1 parent 4e23f93 commit bac0489
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ AX_CXX_COMPILE_STDCXX(17,noext,mandatory)
AC_LANG([C++])

# Checks for header files.
AX_BOOST_BASE(["1.71"],[], AC_MSG_ERROR([SBGraph needs boost library.]))
# AX_BOOST_BASE(["1.71"],[], AC_MSG_ERROR([SBGraph needs boost library.]))
AC_FUNC_ALLOCA
AC_CHECK_HEADERS([malloc.h stdlib.h string.h unistd.h])

Expand Down
8 changes: 6 additions & 2 deletions sbg/sbg.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,19 @@ struct SBGraph {
template<typename Set>
std::ostream &operator<<(std::ostream &out, const SBGraph<Set> &pw);

template<typename Set>
void addSV(Set vertices, SBGraph<Set> &g);

template<typename Set>
unsigned int nmbrSV(SBGraph<Set> g);

template<typename Set>
void addSE(Set edges, SBGraph<Set> &g);

template<typename Set>
SBGraph<Set> addSE(PWMap<Set> pw1, PWMap<Set> pw2, SBGraph<Set> g);

template<typename Set>
SBGraph<Set> addSV(Set vertices, SBGraph<Set> g);

template<typename Set>
SBGraph<Set> copy(unsigned int times, SBGraph<Set> g);

Expand Down

0 comments on commit bac0489

Please sign in to comment.