mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
prevent initialization
This commit is contained in:
parent
87975e16f1
commit
cd352b81a8
|
|
@ -25,7 +25,7 @@ namespace phpOMS\Algorithm\CoinMatching;
|
|||
final class MinimumCoinProblem
|
||||
{
|
||||
/**
|
||||
* Constructure
|
||||
* Constructor
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @codeCoverageIgnore
|
||||
|
|
|
|||
|
|
@ -24,6 +24,16 @@ namespace phpOMS\Algorithm\JobScheduling;
|
|||
*/
|
||||
final class Weighted
|
||||
{
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* Sort jobs by end date.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -27,6 +27,16 @@ namespace phpOMS\Algorithm\Knapsack;
|
|||
*/
|
||||
final class Bounded
|
||||
{
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* Fill the backpack with items
|
||||
*
|
||||
|
|
|
|||
|
|
@ -25,6 +25,16 @@ namespace phpOMS\Algorithm\Knapsack;
|
|||
*/
|
||||
final class Continuous
|
||||
{
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* Fill the backpack with items
|
||||
*
|
||||
|
|
|
|||
|
|
@ -24,6 +24,16 @@ namespace phpOMS\Algorithm\Sort;
|
|||
*/
|
||||
final class BitonicSort implements SortInterface
|
||||
{
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -24,6 +24,16 @@ namespace phpOMS\Algorithm\Sort;
|
|||
*/
|
||||
final class BubbleSort implements SortInterface
|
||||
{
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -24,6 +24,16 @@ namespace phpOMS\Algorithm\Sort;
|
|||
*/
|
||||
final class CocktailShakerSort implements SortInterface
|
||||
{
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -24,6 +24,16 @@ namespace phpOMS\Algorithm\Sort;
|
|||
*/
|
||||
final class CombSort implements SortInterface
|
||||
{
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -24,6 +24,16 @@ namespace phpOMS\Algorithm\Sort;
|
|||
*/
|
||||
final class CycleSort implements SortInterface
|
||||
{
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -24,6 +24,16 @@ namespace phpOMS\Algorithm\Sort;
|
|||
*/
|
||||
final class GnomeSort implements SortInterface
|
||||
{
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -24,6 +24,16 @@ namespace phpOMS\Algorithm\Sort;
|
|||
*/
|
||||
final class HeapSort implements SortInterface
|
||||
{
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -24,6 +24,16 @@ namespace phpOMS\Algorithm\Sort;
|
|||
*/
|
||||
final class InsertionSort implements SortInterface
|
||||
{
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -24,6 +24,16 @@ namespace phpOMS\Algorithm\Sort;
|
|||
*/
|
||||
final class IntroSort implements SortInterface
|
||||
{
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -24,6 +24,16 @@ namespace phpOMS\Algorithm\Sort;
|
|||
*/
|
||||
final class MergeSort implements SortInterface
|
||||
{
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -24,6 +24,16 @@ namespace phpOMS\Algorithm\Sort;
|
|||
*/
|
||||
final class OddEvenSort implements SortInterface
|
||||
{
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -24,6 +24,16 @@ namespace phpOMS\Algorithm\Sort;
|
|||
*/
|
||||
final class PancakeSort implements SortInterface
|
||||
{
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -24,6 +24,16 @@ namespace phpOMS\Algorithm\Sort;
|
|||
*/
|
||||
final class QuickSort implements SortInterface
|
||||
{
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -24,6 +24,16 @@ namespace phpOMS\Algorithm\Sort;
|
|||
*/
|
||||
final class SelectionSort implements SortInterface
|
||||
{
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -24,6 +24,16 @@ namespace phpOMS\Algorithm\Sort;
|
|||
*/
|
||||
final class ShellSort implements SortInterface
|
||||
{
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -24,6 +24,16 @@ namespace phpOMS\Algorithm\Sort;
|
|||
*/
|
||||
final class StoogeSort implements SortInterface
|
||||
{
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user