8000 [PREGEL] Split Graph.h, make PregelShard its own struct by markuspf · Pull Request #17963 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

[PREGEL] Split Graph.h, make PregelShard its own struct #17963

8000 New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Feb 6, 2023
Prev Previous commit
Next Next commit
move Graph.h to its own directory
  • Loading branch information
Markus Pfeiffer committed Feb 6, 2023
commit c6711a7467d5f2b545d1214fe947b7b240747e97
2 changes: 1 addition & 1 deletion arangod/Pregel/Algos/DMID/DMIDMessageFormat.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#pragma once

#include "Pregel/CommonFormats.h"
#include "Pregel/Graph.h"
#include "Pregel/Graph/Graph.h"
#include "Pregel/GraphFormat.h"
#include "Pregel/MessageFormat.h"

Expand Down
2 changes: 1 addition & 1 deletion arangod/Pregel/Algos/DMID/VertexSumAggregator.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include <velocypack/Iterator.h>
#include <velocypack/Slice.h>

#include "Pregel/Graph.h"
#include "Pregel/Graph/Graph.h"

#include <map>
#include <string>
Expand Down
2 changes: 1 addition & 1 deletion arangod/Pregel/Algos/EffectiveCloseness/HLLCounter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include <cmath>
#include "Basics/fasthash.h"
#include "Pregel/CommonFormats.h"
#include "Pregel/Graph.h"
#include "Pregel/Graph/Graph.h"

using namespace arangodb::pregel;

Expand Down
2 changes: 1 addition & 1 deletion arangod/Pregel/Algos/EffectiveCloseness/HLLCounterFormat.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#pragma once

#include "Pregel/CommonFormats.h"
#include "Pregel/Graph.h"
#include "Pregel/Graph/Graph.h"
#include "Pregel/GraphFormat.h"
#include "Pregel/MessageCombiner.h"
#include "Pregel/MessageFormat.h"
Expand Down
2 changes: 1 addition & 1 deletion arangod/Pregel/CommonFormats.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

#include <map>

#include "Pregel/Graph.h"
#include "Pregel/Graph/Graph.h"
#include "Pregel/GraphFormat.h"
#include "Pregel/MessageFormat.h"
#include "Pregel/VertexComputation.h"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion arangod/Pregel/GraphFormat.h
8000
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

#include "Basics/Common.h"
#include "Cluster/ClusterFeature.h"
#include "Pregel/Graph.h"
#include "Pregel/Graph/Graph.h"

struct TRI_vocbase_t;
namespace arangodb {
Expand Down
3 changes: 2 additions & 1 deletion arangod/Pregel/VertexComputation.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@
#include <algorithm>
#include <cstddef>
#include "Basics/Common.h"
#include "Pregel/Graph.h"
#include "Pregel/Graph/Graph.h"
#include "Pregel/Worker/GraphStore.h"
#include "Pregel/Graph/Graph.h"
#include "Pregel/OutgoingCache.h"
#include "Pregel/Worker/WorkerConfig.h"
#include "Pregel/WorkerContext.h"
Expand Down
2 changes: 1 addition & 1 deletion arangod/Pregel/Worker/GraphStore.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#include "Utils/DatabaseGuard.h"

#include "Pregel/ExecutionNumber.h"
#include "Pregel/Graph.h"
#include "Pregel/Graph/Graph.h"
#include "Pregel/GraphFormat.h"
#include "Pregel/Iterators.h"
#include "Pregel/Status/Status.h"
Expand Down
2 changes: 1 addition & 1 deletion arangod/Pregel/Worker/WorkerConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

#include "Pregel/Conductor/Messages.h"
#include "Pregel/ExecutionNumber.h"
#include "Pregel/Graph.h"
#include "Pregel/Graph/Graph.h"

struct TRI_vocbase_t;

Expand Down
0