#include "FuzzySet.h"
#include <iostream>
#include <numeric>
#include <utility>
#include "autopas/utils/ExceptionHandler.h"
#include "autopas/utils/Math.h"
Namespaces | |
namespace | autopas |
This is the main namespace of AutoPas. | |
namespace | autopas::FuzzyLogic |
Namespace that contains the fuzzy logic framework used by the FuzzyTuning-strategy. | |
Functions | |
std::shared_ptr< FuzzySet > | autopas::FuzzyLogic::operator|| (const std::shared_ptr< FuzzySet > &lhs, const std::shared_ptr< FuzzySet > &rhs) |
Returns the union of two FuzzySets. | |
std::shared_ptr< FuzzySet > | autopas::FuzzyLogic::operator&& (const std::shared_ptr< FuzzySet > &lhs, const std::shared_ptr< FuzzySet > &rhs) |
Returns the intersection of two FuzzySets. | |
std::shared_ptr< FuzzySet > | autopas::FuzzyLogic::operator! (const std::shared_ptr< FuzzySet > &fuzzySet) |
Returns the complement of a FuzzySet. | |