We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
_add_points_to_universe
FuzzyVariable
variable.py
add_points_to_universe
inference.py
_fuzzificate_fuzzy_fact
Module FuzzyVariable has no attribute `_add_points_to_universe`
So change self.variables[fact_name]._add_points_to_universe(xp) to self.variables[fact_name].add_points_to_universe(xp)
self.variables[fact_name]._add_points_to_universe(xp)
self.variables[fact_name].add_points_to_universe(xp)
A Pull Request has been created here
The text was updated successfully, but these errors were encountered:
No branches or pull requests
FuzzyVariable
class in the scriptvariable.py
includes a functionadd_points_to_universe
.inference.py
in the function_fuzzificate_fuzzy_fact
it has been incorrectly referred to as_add_points_to_universe
which will cause error:So change
self.variables[fact_name]._add_points_to_universe(xp)
toself.variables[fact_name].add_points_to_universe(xp)
A Pull Request has been created here
The text was updated successfully, but these errors were encountered: