mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-19 06:35:21 -04:00
--User changes
-Add 4 new possible arguments to EmberGenome: --allvars: Print the names of all supported variations. --regvars: Print the names of all supported regular variations. --prevars: Print the names of all supported pre variations. --postvars: Print the names of all supported post variations.
This commit is contained in:
@ -541,6 +541,11 @@ public:
|
||||
size_t PostSize() const { return m_PostVariations.size(); }
|
||||
size_t ParametricSize() const { return m_ParametricVariations.size(); }
|
||||
|
||||
const vector<Variation<T>*>& AllVars() const { return m_Variations; }
|
||||
const vector<Variation<T>*>& RegVars() const { return m_RegVariations; }
|
||||
const vector<Variation<T>*>& PreVars() const { return m_PreVariations; }
|
||||
const vector<Variation<T>*>& PostVars() const { return m_PostVariations; }
|
||||
|
||||
private:
|
||||
/// <summary>
|
||||
/// Make a dyncamically allocated copy of a variation and assign it a specified weight.
|
||||
|
Reference in New Issue
Block a user