1#ifndef LIBTEDDY_DETAILS_DPLDS_HPP
2#define LIBTEDDY_DETAILS_DPLDS_HPP
4#include <libteddy/details/types.hpp>
11inline static auto constexpr basic = [] (int32
const fFrom, int32
const fTo)
13 return [=] (int32
const lhs, int32
const rhs)
14 {
return lhs == fFrom && rhs == fTo; };
20inline static auto constexpr type_1_decrease = [] (int32
const state)
22 return [state] (int32
const lhs, int32
const rhs)
23 {
return lhs == state && rhs < state; };
29inline static auto constexpr type_1_increase = [] (int32
const state)
31 return [state] (int32
const lhs, int32
const rhs)
32 {
return lhs == state && rhs > state; };
38inline static auto constexpr type_2_decrease = [] ()
39{
return [] (int32
const lhs, int32
const rhs) {
return lhs > rhs; }; };
44inline static auto constexpr type_2_increase = [] ()
45{
return [] (int32
const lhs, int32
const rhs) {
return lhs < rhs; }; };
50inline static auto constexpr type_3_decrease = [] (int32
const state)
52 return [state] (int32
const lhs, int32
const rhs)
53 {
return lhs >= state && rhs < state; };
59inline static auto constexpr type_3_increase = [] (int32
const state)
61 return [state] (int32
const lhs, int32
const rhs)
62 {
return lhs < state && rhs >= state; };