| Hosted by CoCalc | Download
%attach compute_lambda.sage
### reloading attached file compute_lambda.sage modified at 19:32:03 ###
drew_report_all(redo=True)
Generating 3268 files database disk image is malformed There is no elliptic curve with label 11a1 in the database There is no elliptic curve with label 11a1 in the database There is no elliptic curve with label 11a1 in the database There is no elliptic curve with label 11a1 in the database
sage_server.MAX_OUTPUT_MESSAGES = 10000 while True: drew_report_all(redo=False) smc.clear() sleep(30)
for E in cremona_optimal_curves(prime_range(389,450)): print E.cremona_label(), E.rank()
389a1 2 431a1 1 431b1 0 433a1 2 443a1 1 443b1 1 443c1 0
smc?
File: /projects/sage/sage-7.5/local/lib/python2.7/site-packages/smc_sagews/sage_server.py Docstring : Cell execution state object and wrapper for access to special SageMathCloud functionality. An instance of this object is created each time you execute a cell. It has various methods for sending different types of output messages, links to files, etc. Type 'help(smc)' for more details. OUTPUT LIMITATIONS -- There is an absolute limit on the number of messages output for a given cell, and also the size of the output message for each cell. You can access or change those limits dynamically in a worksheet as follows by viewing or changing any of the following variables: sage_server.MAX_STDOUT_SIZE # max length of each stdout output message sage_server.MAX_STDERR_SIZE # max length of each stderr output message sage_server.MAX_MD_SIZE # max length of each md (markdown) output message sage_server.MAX_HTML_SIZE # max length of each html output message sage_server.MAX_TEX_SIZE # max length of tex output message sage_server.MAX_OUTPUT_MESSAGES # max number of messages output for a cell. And: sage_server.MAX_OUTPUT # max total character output for a single cell; computation # terminated/truncated if sum of above exceeds this.