Skip to content

Commit

Permalink
Move CondLink to core
Browse files Browse the repository at this point in the history
  • Loading branch information
kasimebrahim committed Feb 12, 2019
1 parent 331ac00 commit 43bce1e
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 2 additions & 0 deletions opencog/atoms/core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ ADD_LIBRARY (atomcore
ValueOfLink.cc
Variables.cc
VariableList.cc
CondLink.cc
)

# Without this, parallel make will race and crap up the generated files.
Expand Down Expand Up @@ -79,5 +80,6 @@ INSTALL (FILES
ValueOfLink.h
Variables.h
VariableList.h
CondLink.h
DESTINATION "include/opencog/atoms/core"
)
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
#include <opencog/atoms/base/ClassServer.h>
#include <opencog/atoms/execution/Instantiator.h>
#include <opencog/atoms/core/FindUtils.h>
#include <opencog/atoms/execution/EvaluationLink.h>

#include "CondLink.h"
#include "EvaluationLink.h"

using namespace opencog;

Expand Down
File renamed without changes.
2 changes: 0 additions & 2 deletions opencog/atoms/execution/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ ADD_LIBRARY (execution
Instantiator.cc
MapLink.cc
LibraryManager.cc
CondLink.cc
)

# Without this, parallel make will race and crap up the generated files.
Expand Down Expand Up @@ -55,6 +54,5 @@ ENDIF (HAVE_GUILE)
# are fixed, first.
INSTALL (FILES
MapLink.h
CondLink.h
DESTINATION "include/opencog/atoms/core"
)
2 changes: 1 addition & 1 deletion opencog/atoms/execution/Instantiator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include <opencog/atoms/execution/ExecutionOutputLink.h>
#include <opencog/atoms/execution/EvaluationLink.h>
#include <opencog/atoms/execution/MapLink.h>
#include <opencog/atoms/execution/CondLink.h>
#include <opencog/atoms/core/CondLink.h>
#include <opencog/atoms/reduct/FoldLink.h>

#include "Instantiator.h"
Expand Down

0 comments on commit 43bce1e

Please sign in to comment.