ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkInitializationBiasedParticleSwarmOptimizer.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * https://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18
19#ifndef itkInitializationBiasedParticleSwarmOptimizer_h
20#define itkInitializationBiasedParticleSwarmOptimizer_h
21
23#include "ITKOptimizersExport.h"
24
25namespace itk
26{
70{
71public:
72 ITK_DISALLOW_COPY_AND_MOVE(InitializationBiasedParticleSwarmOptimizer);
73
79
80 using CoefficientType = double;
81
83 itkNewMacro(Self);
84
86 itkOverrideGetNameOfClassMacro(InitializationBiasedParticleSwarmOptimizer);
87
104 itkSetMacro(InertiaCoefficient, CoefficientType);
105 itkGetMacro(InertiaCoefficient, CoefficientType);
106 itkSetMacro(PersonalCoefficient, CoefficientType);
107 itkGetMacro(PersonalCoefficient, CoefficientType);
108 itkSetMacro(GlobalCoefficient, CoefficientType);
109 itkGetMacro(GlobalCoefficient, CoefficientType);
110 itkSetMacro(InitializationCoefficient, CoefficientType);
111 itkGetMacro(InitializationCoefficient, CoefficientType);
113
114protected:
117 void
118 PrintSelf(std::ostream & os, Indent indent) const override;
119 void
120 UpdateSwarm() override;
121
122private:
123 ParametersType::ValueType m_InertiaCoefficient{};
124 ParametersType::ValueType m_PersonalCoefficient{};
125 ParametersType::ValueType m_GlobalCoefficient{};
126 ParametersType::ValueType m_InitializationCoefficient{};
127};
128
129} // end namespace itk
130
131#endif
Control indentation during Print() invocation.
Definition itkIndent.h:50
void PrintSelf(std::ostream &os, Indent indent) const override
~InitializationBiasedParticleSwarmOptimizer() override=default
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....