UPDATE: 20171203
This post wasn't well thought out or explored.
After reflecting on this more I have reformulated this information into a new post:
https://gist.github.com/stackdump/2be8345c71ab111a6c37d97bdea84234
UPDATE: 20171203
This post wasn't well thought out or explored.
After reflecting on this more I have reformulated this information into a new post:
https://gist.github.com/stackdump/2be8345c71ab111a6c37d97bdea84234
| builtins.RecursionError | |
| RecursionError: maximum recursion depth exceeded while calling a Python object | |
| Traceback (most recent call last) | |
| File "/home/ork/.local/share/virtualenvs/bitwrap-io-0mehGRkI/lib/python3.6/site-packages/flask/app.py", line 2295, in wsgi_app | |
| response = self.handle_exception(e) | |
| File "/home/ork/.local/share/virtualenvs/bitwrap-io-0mehGRkI/lib/python3.6/site-packages/flask_restful/__init__.py", line 273, in error_router | |
| return original_handler(e) | |
| File "/home/ork/.local/share/virtualenvs/bitwrap-io-0mehGRkI/lib/python3.6/site-packages/flask_cors/extension.py", line 161, in wrapped_function | |
| return cors_after_request(app.make_response(f(*args, **kwargs))) |
| import asyncio | |
| from concurrent import futures | |
| import functools | |
| import inspect | |
| import threading | |
| from grpc import _server | |
| def _loop_mgr(loop: asyncio.AbstractEventLoop): |
| # started w/ cli | |
| factomd -factomhome=./ -count=5 -blktime=20 -net=alot -network=LOCAL -startdelay=10 -sim_stdin=true > out.txt | |
| ... | |
| Switching to Node 4 | |
| t | |
| There are no available identities in this node. Type 'g1' to claim another identity | |
| g1 |
| package main | |
| import "time" | |
| func main() { | |
| stop := make(chan struct{}) | |
| go func() { | |
| //wait := time.After(500 * time.Millisecond) | |
| //<-wait |
| Set Implicit Arguments. | |
| Inductive vector (X : Type) : nat -> Type := | |
| | vnul : vector X 0 | |
| | vcons {n : nat} (h : X) (v : vector X n) : vector X (S n). | |
| Arguments vnul [X]. | |
| Definition vhd (X : Type) n (v : vector X (S n)) : X := | |
| match v with | |
| | vcons _ h _ => h |
| (* Introduction to dependent types using vectors. | |
| Venanzio Capretta, February 2011. *) | |
| (* This tells Coq to implicitely deduce some arguments. *) | |
| Set Implicit Arguments. | |
| (* Family of finite types: (Finite n) has exactly n elements. *) | |
| Inductive Finite: nat -> Set := |