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
Now visualizing a new algorithm requires hard coding, such as: paxos
This could have been optimized into JSON to configure the visualization of the algorithm. JSON for example:
{ "delay": 100, "title": "Accept Paxos", "continue": "visible" }, { "delay": 200, "wait": true }, { "delay": 800, "title": "", "continue": "hidden" }, { "delay": 800, "title": "", "create": [ { "type": "client", "id": "X", "state": "proposer" }, { "type": "node", "id": "P", "state": "proposer" } ] } ]```
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Now visualizing a new algorithm requires hard coding, such as: paxos
This could have been optimized into JSON to configure the visualization of the algorithm. JSON for example:
The text was updated successfully, but these errors were encountered: