• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

dedicate-project / beast / 3ba971e4-2004-46a3-b2d0-8a6d687db0d1

pending completion
3ba971e4-2004-46a3-b2d0-8a6d687db0d1

Pull #9

circleci

fairlight1337
Repaired context menu popping up
Pull Request #9: Adding pipeline applications

1225 of 1225 new or added lines in 24 files covered. (100.0%)

2850 of 3071 relevant lines covered (92.8%)

12345.72 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

75.0
/src/evaluators/maze_evaluator.cpp
1
#include <beast/evaluators/maze_evaluator.hpp>
2

3
// Standard
4
#include <limits>
5
#include <random>
6

7
// BEAST
8
#include <beast/cpu_virtual_machine.hpp>
9

10
namespace beast {
11

12
MazeEvaluator::MazeEvaluator(uint32_t rows, uint32_t cols, double difficulty, uint32_t max_steps)
5✔
13
    : rows_{rows}, cols_{cols}, difficulty_{difficulty}, max_steps_{max_steps} {}
5✔
14

15
double MazeEvaluator::evaluate(const VmSession& /*session*/) {
×
16
  // TODO(fairlight1337): Implement this evaluation function.
17

18
  return 0.0;
×
19
}
20

21
uint32_t MazeEvaluator::getRows() const { return rows_; }
5✔
22

23
uint32_t MazeEvaluator::getCols() const { return cols_; }
5✔
24

25
double MazeEvaluator::getDifficulty() const { return difficulty_; }
5✔
26

27
uint32_t MazeEvaluator::getMaxSteps() const { return max_steps_; }
5✔
28

29
} // namespace beast
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc