Ocean
Loading...
Searching...
No Matches
TestBinPacking.h
Go to the documentation of this file.
1/*
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 */
7
8#ifndef META_OCEAN_TEST_TESTCV_TESTSEGMENTATION_TEST_BIN_PACKING_H
9#define META_OCEAN_TEST_TESTCV_TESTSEGMENTATION_TEST_BIN_PACKING_H
10
12
13namespace Ocean
14{
15
16namespace Test
17{
18
19namespace TestCV
20{
21
22namespace TestSegmentation
23{
24
25/**
26 * This class implements test for bin packing.
27 * @ingroup testcvsegmentation
28 */
29class OCEAN_TEST_CV_SEGMENTATION_EXPORT TestBinPacking
30{
31 public:
32
33 /**
34 * Tests all bin packing functions.
35 * @param testDuration Number of seconds for each test, with range (0, infinity)
36 * @param worker The worker object to distribute the computational load
37 * @return True, if succeeded
38 */
39 static bool test(const double testDuration, Worker& worker);
40
41 /**
42 * Tests the bin packing function.
43 * @param testDuration Number of seconds for each test, with range (0, infinity)
44 * @return True, if succeeded
45 */
46 static bool testBinPacking(const double testDuration);
47};
48
49} // namespace TestSegmentation
50
51} // namespace TestCV
52
53} // namespace Test
54
55} // namespace Ocean
56
57#endif // META_OCEAN_TEST_TESTCV_TESTSEGMENTATION_TEST_BIN_PACKING_H
This class implements test for bin packing.
Definition TestBinPacking.h:30
static bool testBinPacking(const double testDuration)
Tests the bin packing function.
static bool test(const double testDuration, Worker &worker)
Tests all bin packing functions.
This class implements a worker able to distribute function calls over different threads.
Definition Worker.h:33
The namespace covering the entire Ocean framework.
Definition Accessor.h:15