Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
siyuan0322 committed Jun 27, 2024
1 parent 4b842c7 commit 23b0387
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
15 changes: 10 additions & 5 deletions analytical_engine/core/applications.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,18 @@
* limitations under the License.
*/

#ifndef ANALYTICAL_ENGINE_CORE_APPLICATIONS_H_
#define ANALYTICAL_ENGINE_CORE_APPLICATIONS_H_

#include <cstdio>
#include <fstream>
#include <memory>
#include <string>
#include <vector>

#include "common/util/uuid.h"
#include "gflags/gflags.h"
#include "gflags/gflags_declare.h"
#include "glog/logging.h"

#include "grape/grape.h"
Expand All @@ -28,10 +35,6 @@
#include "core/fragment/arrow_projected_fragment.h"
#include "core/loader/arrow_fragment_loader.h"

#include "gflags/gflags.h"
#include "gflags/gflags_declare.h"
#include "glog/logging.h"

namespace gs {

template <typename FRAG_T>
Expand Down Expand Up @@ -65,4 +68,6 @@ void RunPropertyApp(std::shared_ptr<FRAG_T> fragment,
std::vector<int> prepareSamplingPathPattern(const std::string& path_pattern);

void RunApp();
} // namespace gs
} // namespace gs

#endif // ANALYTICAL_ENGINE_CORE_APPLICATIONS_H_
2 changes: 1 addition & 1 deletion analytical_engine/core/flags.cc
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,4 @@ DEFINE_string(sampling_path_pattern, "", "sampling path pattern");
DEFINE_bool(run_projected, false, "run projected");

DEFINE_double(pagerank_delta, 0.85, "damping factor of pagerank");
DEFINE_int32(max_round, 10, "maximum round");
DEFINE_int32(max_round, 10, "maximum round");

0 comments on commit 23b0387

Please sign in to comment.