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
Make it so that CA can be constructed based on functions instead of rule number. This can be done with construct_CA_from_function command.
i.e. if we give the CA the function defined by def f(x*): x[0]&x[1]&x[2]
Then we should be able to construct a CA using f by construct_CA_from_function(f), and it will return a CA that is based on that.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Make it so that CA can be constructed based on functions instead of rule number. This can be done with construct_CA_from_function command.
i.e. if we give the CA the function defined by
def f(x*):
x[0]&x[1]&x[2]
Then we should be able to construct a CA using f by construct_CA_from_function(f), and it will return a CA that is based on that.
The text was updated successfully, but these errors were encountered: