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

dedicate-project / beast / 8c849f2c-086d-406b-a03d-7ef8df12cdc1

pending completion
8c849f2c-086d-406b-a03d-7ef8df12cdc1

Pull #9

circleci

fairlight1337
Fixed more code smells
Pull Request #9: Adding pipeline applications

1247 of 1247 new or added lines in 23 files covered. (100.0%)

2868 of 3092 relevant lines covered (92.76%)

16138.58 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