Question: How to stop dsolve?

how to  force a dsolve to timeout since it run a very long time

 

how to be like python set timeout then stop the function, in here , is dsolver

j = 1
for functionlistelement in functionlist0
tesks.append(asyncio.ensure_future(mappedfunc.get(functionlistelement)()))
if j > 1:
workingthreadpool(functionlistelement)
j = j + 1

loop.run_until_complete(asyncio.wait_for(tesks, 1))
loop.close()

Please Wait...