Skip to content

Commit

Permalink
Moved src/core to src/driver and modified paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
gwtnb committed Apr 16, 2013
1 parent 96ffe60 commit e59b1b9
Show file tree
Hide file tree
Showing 26 changed files with 8 additions and 8 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/core/wscript → src/driver/wscript
Expand Up @@ -39,7 +39,7 @@ def build(bld):
for t in tests:
make_test(t)

bld.install_files('${PREFIX}/include/jubatus/core', [
bld.install_files('${PREFIX}/include/jubatus/driver', [
'classifier.hpp',
'regression.hpp',
'recommender.hpp',
Expand Down
2 changes: 1 addition & 1 deletion src/server/anomaly_serv.hpp
Expand Up @@ -25,7 +25,7 @@
#include "../common/global_id_generator_base.hpp"
#include "../common/lock_service.hpp"
#include "../common/shared_ptr.hpp"
#include "../core/anomaly.hpp"
#include "../driver/anomaly.hpp"
#include "anomaly_types.hpp"

namespace jubatus {
Expand Down
2 changes: 1 addition & 1 deletion src/server/classifier_serv.hpp
Expand Up @@ -21,7 +21,7 @@
#include <utility>
#include <vector>
#include <pficommon/lang/shared_ptr.h>
#include "../core/classifier.hpp"
#include "../driver/classifier.hpp"
#include "classifier_types.hpp"

namespace jubatus {
Expand Down
2 changes: 1 addition & 1 deletion src/server/graph_serv.hpp
Expand Up @@ -25,7 +25,7 @@
#include "../common/global_id_generator_base.hpp"
#include "../common/lock_service.hpp"
#include "../common/shared_ptr.hpp"
#include "../core/graph.hpp"
#include "../driver/graph.hpp"
#include "graph_types.hpp"

namespace jubatus {
Expand Down
2 changes: 1 addition & 1 deletion src/server/recommender_serv.hpp
Expand Up @@ -21,7 +21,7 @@
#include <utility>
#include <vector>
#include <pficommon/lang/shared_ptr.h>
#include "../core/recommender.hpp"
#include "../driver/recommender.hpp"
#include "recommender_types.hpp"

namespace jubatus {
Expand Down
2 changes: 1 addition & 1 deletion src/server/regression_serv.hpp
Expand Up @@ -22,7 +22,7 @@
#include <vector>

#include <pficommon/lang/shared_ptr.h>
#include "../core/regression.hpp"
#include "../driver/regression.hpp"
#include "regression_types.hpp"

namespace jubatus {
Expand Down
2 changes: 1 addition & 1 deletion src/server/stat_serv.hpp
Expand Up @@ -23,7 +23,7 @@

#include "../framework/server_base.hpp"
#include "../framework/mixer/mixer.hpp"
#include "../core/stat.hpp"
#include "../driver/stat.hpp"

namespace jubatus {
namespace server {
Expand Down
2 changes: 1 addition & 1 deletion src/wscript
Expand Up @@ -3,7 +3,7 @@ import Options
subdirs = '''
anomaly common plugin stat
classifier fv_converter recommender regression storage
framework core server
framework driver server
cmd jubavisor
graph third_party
'''
Expand Down

0 comments on commit e59b1b9

Please sign in to comment.