Re: [sage-devel] Fwd: [sage-trac] #26795: Some memory leaks

2018-12-03 Thread Jori Mäntysalo
= P.convexity_properties()  > }}} I did some other tests, and found no more leaks. It may make sense to run this in a more systematic way after leaks in MILP interface has been resolved. And it's not a bad idea to do similar tests in, say, matrix functions over finite field etc. -- Jori Mäntysalo

Re: [sage-devel] Re: Memory leak in poset dimension()

2018-12-03 Thread Jori Mäntysalo
On Mon, 3 Dec 2018, Dima Pasechnik wrote: please post the test you use. import gc i = 0 for P in Posets(8): if i % 1000 == 0: gc.collect() print get_memory_usage() i += 1 _ = P.dimension() -- Jori Mäntysalo

Re: [sage-devel] Re: Memory leak in poset dimension()

2018-12-02 Thread Jori Mäntysalo
On Sun, 2 Dec 2018, Dima Pasechnik wrote: do you still see it with https://trac.sagemath.org/ticket/26795 ? Yes, it is still there. -- Jori Mäntysalo

[sage-devel] Analyzing [pc]ython code for memory leaks

2018-12-02 Thread Jori Mäntysalo
the function ends without bitset_free. I suppose that someone has already done something like that. -- Jori Mäntysalo

[sage-devel] Memory leak in poset dimension()

2018-12-01 Thread Jori Mäntysalo
This shows a leak: i = 0 for P in Posets(8): if i % 1000 == 0: gc.collect() print get_memory_usage() i += 1 _ = P.dimension() To compare, width() and height() does not seem to leak. -- Jori Mäntysalo

Re: [sage-devel] Re: Other memory leaks

2018-12-01 Thread Jori Mäntysalo
On Sat, 1 Dec 2018, 'Martin R' via sage-devel wrote: I confirm that the following leaks: I created https://trac.sagemath.org/ticket/26795 for this and similar. -- Jori Mäntysalo

[sage-devel] Other memory leaks

2018-12-01 Thread Jori Mäntysalo
for this. -- Jori Mäntysalo

Re: [sage-devel] memory problem

2018-12-01 Thread Jori Mäntysalo
someone else should look at this. OTOH I suppose this is an easy one, just add a destructor function (whatever it is called in cython). Harder one is to search for other similar bugs. -- Jori Mäntysalo

Re: [sage-devel] memory problem

2018-11-30 Thread Jori Mäntysalo
. Try addin break after P.breadth_first_search(i). -- Jori Mäntysalo

Re: [sage-devel] memory problem

2018-11-30 Thread Jori Mäntysalo
: . . . break else: bitset_free(self.seen) raise StopIteration So, now when there is no reference to Search_iterator any more, should Cython automatically clean up the space taken, or should there be an explicit destructor? -- Jori Mäntysalo

Re: [sage-devel] memory problem

2018-11-28 Thread Jori Mäntysalo
UniqueRepresentation. Can this be a bug in Python? Maybe we can make quick modification to digraph code so that we can create posets with Py3-compiled Sage, and test that. But all of this is above my knowledge. :=( -- Jori Mäntysalo

Re: [sage-devel] memory problem

2018-11-28 Thread Jori Mäntysalo
Weird. -- Jori Mäntysalo

Re: [sage-devel] memory problem

2018-11-24 Thread Jori Mäntysalo
means that the result is implicitly cached. -- Jori Mäntysalo

[sage-devel] @rename_keyword without ticket number

2018-11-23 Thread Jori Mäntysalo
There are, in 21 different files, 31 @rename_keyword statements without a trac number. Could we fix them, and if so, is it possible to always require the ticket number, i.e. deprecation-parameter? -- Jori Mäntysalo

Re: [sage-devel] Jupyterhub kernel and SAGE_ROOT

2018-11-16 Thread Jori Mäntysalo
that 50 simultaneous connection will be the maximum. The use might be, for example, a course on graph theory having mandatory but trivial exercise about SageMath graph functions. -- Jori Mäntysalo

Re: [sage-devel] Jupyterhub kernel and SAGE_ROOT

2018-11-16 Thread Jori Mäntysalo
them. -- Jori Mäntysalo

Re: [sage-devel] Jupyterhub kernel and SAGE_ROOT

2018-11-05 Thread Jori Mäntysalo
s available for advanced users? With SageNB I have just installed new version. If something brokes for some user, then it brokes -- there are deprecation warnings that hopefully helps. -- Jori Mäntysalo

Re: [sage-devel] Jupyterhub kernel and SAGE_ROOT

2018-11-05 Thread Jori Mäntysalo
On Mon, 5 Nov 2018, François Bissey wrote: I’d be curious about that, but yes that may be off-list. Of course if I can make a good step-by-step manual, then I will write about that in this list. -- Jori Mäntysalo

Re: [sage-devel] Jupyterhub kernel and SAGE_ROOT

2018-11-04 Thread Jori Mäntysalo
Now it's time for polyamory, i.e. getting also shibboleth ready. But that will be off-topic for this list. -- Jori Mäntysalo

[sage-devel] Jupyterhub kernel and SAGE_ROOT

2018-11-04 Thread Jori Mäntysalo
to ignore environment. What next? -- Jori Mäntysalo

Re: [sage-devel] Re: Make and html docs

2018-10-23 Thread Jori Mäntysalo
git), run "make" without -j, and I have Ubuntu 18.04 LTS which is, IIRC, former Ubuntu 14.04 upgraded twice. And now after make dist-clean it compiled also manuals and everything is up and running. Let's suppose this was a heisenbug. -- Jori Mäntysalo

[sage-devel] Make and html docs

2018-10-23 Thread Jori Mäntysalo
ing "make all". Now "make doc-clean" done and "make all" running again.) -- Jori Mäntysalo

Re: [sage-devel] Re: Remove sagenb documentation from the reference manual?

2018-10-21 Thread Jori Mäntysalo
to start. -- Jori Mäntysalo

[sage-devel] Pinging about modular decomposition of graphs

2018-09-20 Thread Jori Mäntysalo
Just to ping... Anyone looking at https://trac.sagemath.org/ticket/25872 ? Working modular decomposition => working decomposition of poset ("converse of lexicographic sum") => optimizations for the jump number etc. -- Jori Mäntysalo

[sage-devel] Profiling subfunction

2018-09-19 Thread Jori Mäntysalo
%lprun is a nice tool that shows how much time each line of the function uses. But can I do profiling for an internal function defined inside outer function? -- Jori Mäntysalo

Re: [sage-devel] Re: Py3, sorting vertices of graph

2018-09-06 Thread Jori Mäntysalo
On Thu, 6 Sep 2018, John H Palmieri wrote: Also not ideal, but you could first try u < v, and if that fails, catch the error and use str(u) < str(v). But we can have Graph({'1': [1]}) and so not total order for str() of vertices. -- Jori Mäntysalo

[sage-devel] Py3, sorting vertices of graph

2018-08-30 Thread Jori Mäntysalo
ces() for (di)graphs. It is trivial to try sort vertices, and when failed, return them in an arbitrary order, but I don't know what would be broken then. -- Jori Mäntysalo

Re: [sage-devel] Re: New code to generate finite lattices

2018-08-26 Thread Jori Mäntysalo
, planar lattices, it is much faster if we do the filtering in C-phase. For graded, semimodular and modular lattices we could even make the generating part in C.) -- Jori Mäntysalo

[sage-devel] New code to generate finite lattices

2018-08-25 Thread Jori Mäntysalo
, b: a < b and S[b*(b-1)/2+a]=='1']), category=FiniteLatticePosets()) I think someone, like me, should make an optional package from this. -- Jori Mäntysalo

Re: [sage-devel] Re: Two-vertex graphs and is_prime()

2018-07-10 Thread Jori Mäntysalo
for others to decide. -- Jori Mäntysalo

Re: [sage-devel] Re: How parallel should @parallel be?

2018-07-09 Thread Jori Mäntysalo
. Then there is a need for better maintainer on the machine. Also, limiting number of CPU cores is the most less efective restriction. Timesharing works very well in any case; much more problematic is program that eats memory or just runs heavy I/O. -- Jori Mäntysalo

Re: [sage-devel] How parallel should @parallel be?

2018-07-09 Thread Jori Mäntysalo
distribution. Maybe also a link to page telling about cgroups and even about at-command.) -- Jori Mäntysalo

[sage-devel] Two-vertex graphs and is_prime()

2018-07-08 Thread Jori Mäntysalo
Graph({1:[2]}).is_prime() returns False, and the documentation says "A graph is prime if all its modules are trivial (i.e. empty, all of the graph or singletons)". Is this an error, or are the two-element graphs by convention classified as prime graphs? -- Jori Mäntysalo

[sage-devel] Bug: Neighbors of a vertex in an immutable digraph

2018-06-10 Thread Jori Mäntysalo
for now. -- Jori Mäntysalo

Re: [sage-devel] random_element and randtest_element

2018-06-07 Thread Jori Mäntysalo
(L) is None # Long time True We could check, for example, that matrix AB is invertible iff both A and B are, and so on. * * * Another thing, should we try to classify bugs we found? I mean that could we get insight of places to look for possible other bugs? -- Jori Mäntysalo

Re: [sage-devel] Enhancements for unit-distance graphs

2018-04-25 Thread Jori Mäntysalo
h is not 3-colorable. I would like to submit a function for smallgraphs.py that lets this be a named graph in sage. Good idea, but first check that it is not already included with some other name. You may also want to add a function to recognize unit distance graphs. -- Jori Mäntysalo

Re: [sage-devel] Re: Moving sagenb worksheets

2018-04-24 Thread Jori Mäntysalo
). There is no easy way in SageNB to handle users, like grouping them to courses and deleting accounts that are not marked as being "staff"-group etc. Even deleting a user does not delete worksheets. -- Jori Mäntysalo

Re: [sage-devel] Re: Moving sagenb worksheets

2018-04-24 Thread Jori Mäntysalo
So I guess the problem is somehow some memory exhausting(?). -- Jori Mäntysalo

[sage-devel] Moving sagenb worksheets

2018-04-23 Thread Jori Mäntysalo
to another. -- Jori Mäntysalo

Re: [sage-devel] Nauty as a default generator for graphs

2018-03-12 Thread Jori Mäntysalo
a class Graphs analogous to the class Posets, and have the cardinality of the first few layers built in (analogous to Posets(16).cardinality()) I am not sure about that. What should be the meaning of, say "g in graphs(10)" or "g in graphs"? -- Jori Mäntysalo

[sage-devel] Nauty as a default generator for graphs

2018-03-08 Thread Jori Mäntysalo
graphs(n, property=lambda x: True). I think that Sage documentation makes no promise at all about the order in which graphs are generated. -- Jori Mäntysalo

Re: [sage-devel] Whitespace patchbombs

2018-02-20 Thread Jori Mäntysalo
How are merge conflicts handled, and is there any use for priority-flag on trac? It would make sense that lower priority tickets would be merged after more important ones. -- Jori Mäntysalo

Re: [sage-devel] Problems with posets

2018-01-23 Thread Jori Mäntysalo
o remove a covering relation. With those we could have principal upper and lower sets of a power poset, i.e. an extensions poset you asked. -- Jori Mäntysalo

Re: [sage-devel] Re: Example graphs and show()

2018-01-19 Thread Jori Mäntysalo
ost graphs that this-and-this-too can be shown with .show()? I see no added value to the user. -- Jori Mäntysalo

Re: [sage-devel] Re: Example graphs and show()

2018-01-18 Thread Jori Mäntysalo
/generators/platonic_solids.py the test time dropped from 3,5 to 0,5 seconds. However, the output of the plot should be something that says how many graphics objects, which generally should not change. True. Should it be on TESTS or in EXAMPLES? -- Jori Mäntysalo

Re: [sage-devel] Re: Example graphs and show()

2018-01-17 Thread Jori Mäntysalo
should be exactly the same as plot(). And then, is even plot() usefull as an example? -- Jori Mäntysalo

[sage-devel] Example graphs and show()

2018-01-16 Thread Jori Mäntysalo
Many examples at graph_generators.py use show() as an example of use. What you think about this? It tests that plotting of the graph does not return an error, but nothing more. And it will take time, not that much but cutting the testing time would not be a bad idea. -- Jori Mäntysalo

[sage-devel] Authentication by shibboleth

2018-01-16 Thread Jori Mäntysalo
Does anyone here currently adminstrate a Sagemath installation having shibboleth as the main authentication? -- Jori Mäntysalo

Re: [sage-devel] Problems with posets

2018-01-15 Thread Jori Mäntysalo
ization software (VirtualBox is my favorite in desktop), install Sage inside the virtual machine, and then make snapshots of the virtual machine sometimes. You can even make it automatic, see https://www.techrepublic.com/article/how-to-automate-virtualbox-snapshots-with-the-vboxmanage-command/ -- Jori Mäntysalo

Re: [sage-devel] (Proposed feature) Enumerate all labeled posets

2018-01-15 Thread Jori Mäntysalo
somorphism. Btw, just extending poset by adding a new maximal element covering all possible subsets of maximal elements will give you all posets having 1, 2, ..., n as a linear extension. That is not enought? -- Jori Mäntysalo

Re: [sage-devel] Problems with posets

2018-01-14 Thread Jori Mäntysalo
ondPoset(5)? By the way, can anyone give me CPU power of a supercomputer for free? Try to make a paper together with someone in Finland... 1000 CPU hours is automatically available here for any researcher in any university, more by asking. -- Jori Mäntysalo

Re: [sage-devel] country-wide Jupyter cloud computing service in Canada

2017-12-24 Thread Jori Mäntysalo
=column-3_p_col_count=1 "With power user rights on the system you can customise your own notebooks. Lecturers can e.g. create ready-made course notebooks with required applications, datasets and exercises." -- Jori Mäntysalo

[sage-devel] Meaning of edge_labels in canonical_label()

2017-12-18 Thread Jori Mäntysalo
Using edge_labels=True in canonical_label() of graph seems to work, i.e. canonization transforms isomorphism to equality. Also the parameter does *something*, it is not ignored. But what is the meaning of it? For partition-parameter the meaning is clear (but not clearly documented). -- Jori

Re: [sage-devel] Re: About solve(x*abs(x)==1, x)

2017-12-13 Thread Jori Mäntysalo
t;. And he is not happy about this. -- Jori Mäntysalo

[sage-devel] About solve(x*abs(x)==1, x)

2017-12-13 Thread Jori Mäntysalo
this better? -- Jori Mäntysalo

Re: [sage-devel] Re: SageNB and ldap packages

2017-12-12 Thread Jori Mäntysalo
On Tue, 12 Dec 2017, Dima Pasechnik wrote: Have you tested against a real LDAP server? Yes. It works. Could you comment on https://github.com/sagemath/sagenb/issues/177  rather than here?  OK, I'll continue there. -- Jori Mäntysalo

Re: [sage-devel] Re: SageNB and ldap packages

2017-12-12 Thread Jori Mäntysalo
/sage -i openssl" and/or "./sage -pip install pyopenssl" is needed. As for easy_install I just tried different options. I think that now we know what commands are sufficient to have LDAP. I am not sure if we know what are necessary commands. -- Jori Mäntysalo

Re: [sage-devel] Re: SageNB and ldap packages

2017-12-11 Thread Jori Mäntysalo
to show. -- Jori Mäntysalo

Re: [sage-devel] Re: SageNB and ldap packages

2017-12-11 Thread Jori Mäntysalo
ation: On LDAP URI: ldap://ldap.forumsys.com:389/ Bind DN: cn=read-only-admin,dc=example,dc=com Bind Password: password Use GSSAPI instead of Bind DN/Password: Off Base DN: ou=mathematicians,dc=example,dc=com Username Attribute (i.e. cn, uid or userPrincipalName): uid Query timeout (seconds): 5 B

Re: [sage-devel] Re: SageNB and ldap packages

2017-12-10 Thread Jori Mäntysalo
On Sun, 10 Dec 2017, Dima Pasechnik wrote: How do I reproduce your error? You need a working LDAP server for that. Maybe this works: https://www.forumsys.com/tutorials/integration-how-to/ldap/online-ldap-test-server/ I'll continue with this tomorrow. -- Jori Mäntysalo

Re: [sage-devel] Re: SageNB and ldap packages

2017-12-10 Thread Jori Mäntysalo
.egg/ldap/filter.py:from ldap.functions import strf_secs ./local/lib64/python2.7/site-packages/ldap/filter.py:from ldap.functions import strf_secs ./local/lib64/python3.6/site-packages/python_ldap-3.0.0b1-py3.6-linux-x86_64.egg/ldap/filter.py:from ldap.functions import strf_secs -- Jori Mäntysalo

Re: [sage-devel] Re: SageNB and ldap packages

2017-12-09 Thread Jori Mäntysalo
te: It's probably coming from one of (non-standard ?) python packages you have installed. True, I installed some optional packages (gap_database, dot2tex etc.). But I don't get that -- how those affect login on SageNB? -- Jori Mäntysalo

Re: [sage-devel] Re: SageNB and ldap packages

2017-12-09 Thread Jori Mäntysalo
tself. But propably this was wrong path anyways? -- Jori Mäntysalo

Re: [sage-devel] Re: SageNB and ldap packages

2017-12-08 Thread Jori Mäntysalo
, not for sharing a notebook within a group (or to a teacher). I've been working on interface coding fulltime most of the last 5 years. One would think that many other can make interface, but quite few people are capable of adding some number theory parts to Sage... -- Jori Mäntysalo

Re: [sage-devel] Re: SageNB and ldap packages

2017-12-08 Thread Jori Mäntysalo
try looking too hard, but ldap.functions seems to be something Python 3-only...) As always, I started by downloading the stable version and compiled from scratch. So it should be there, or otherwise there are ghosts in the server. -- Jori Mäntysalo

Re: [sage-devel] Re: SageNB and ldap packages

2017-12-08 Thread Jori Mäntysalo
for other to implement it all. :=) -- Jori Mäntysalo

[sage-devel] SageNB and ldap packages

2017-12-08 Thread Jori Mäntysalo
such that it either says that my password is wrong or give 500 Internal error, so I suppose that most parts of the system are working. -- Jori Mäntysalo

Re: [sage-devel] Re: Issue with quick start

2017-12-05 Thread Jori Mäntysalo
s/perm_gps/permgroup_named.py. I would like to see only one spelling, i.e. no color and colour etc, but that has been discussed earlier without ending to a common view. -- Jori Mäntysalo

Re: [sage-devel] Python3 comparing, an idea about deprecation

2017-11-06 Thread Jori Mäntysalo
o see the vertices, edges, etc. listed in an order that makes the output easy to read - -". -- Jori Mäntysalo

Re: [sage-devel] Python3 comparing, an idea about deprecation

2017-11-06 Thread Jori Mäntysalo
. -- Jori Mäntysalo

[sage-devel] Python3 comparing, an idea about deprecation

2017-11-05 Thread Jori Mäntysalo
Is it possible to run min(L) in Python2 and at the same time check if it could be run in Python3 for given L? Reason: allow_multiple_edges() on generic_graph.py and keep_label='min' (or 'max'), can we have a nice deprecation? -- Jori Mäntysalo

[sage-devel] Forbidden parameter combinations for a function

2017-10-31 Thread Jori Mäntysalo
not be used anyway.) -- Jori Mäntysalo

Re: [sage-devel] Trac: getting logged out instantly

2017-10-30 Thread Jori Mäntysalo
happened. Maybe some tcp fragmentation thing, timings, or some other things. -- Jori Mäntysalo

[sage-devel] Workaround for ipython build hang

2017-10-23 Thread Jori Mäntysalo
There is #24088 already in positive_review. But as a sidenote: I was able to compile Sage with many, many rounds. So here is a workaround to those seeing an error from ipython in compilation: until make; do echo Duh. Another try.; done -- Jori Mäntysalo

Re: [sage-devel] Re: Graphs: Hamiltonian path vs. cycle

2017-10-18 Thread Jori Mäntysalo
o those related to Eulerian path/cycle. -- Jori Mäntysalo

Re: [sage-devel] Re: Graphs: Hamiltonian path vs. cycle

2017-10-18 Thread Jori Mäntysalo
rue when the graph has an Eulerian path BUT has not Eulerian cycle. Is this normal use in graph theory? -- Jori Mäntysalo

Re: [sage-devel] Re: Graphs: Hamiltonian path vs. cycle

2017-10-14 Thread Jori Mäntysalo
rian", and the same for is_traceable / "semi-hamiltonian". Later get back to functions hamiltonian_cycle() etc. -- Jori Mäntysalo

Re: [sage-devel] Re: Graphs: Hamiltonian path vs. cycle

2017-10-14 Thread Jori Mäntysalo
emi-hamiltonian graph": A graph is semi-hamiltonian if it contains a hamiltonian path but no hamiltonian cycle. Duh. And then there is the concept of hypohamiltonian. -- Jori Mäntysalo

Re: [sage-devel] python3 status

2017-10-13 Thread Jori Mäntysalo
On Fri, 13 Oct 2017, Frédéric Chapoton wrote: Cool, no ? Or maybe nobody cares ? Cool, yes! -- Jori Mäntysalo

[sage-devel] Re: Graphs: Hamiltonian path vs. cycle

2017-10-13 Thread Jori Mäntysalo
th) or (False, None) as output. But I am not an expert, so maybe graph theorists have something to say about this. -- Jori Mäntysalo

[sage-devel] Is the empty graph cograph

2017-10-12 Thread Jori Mäntysalo
Should the empty graph be defined as cograph? It can not be made from 1-vertex graphs by disjoint union and complementation, so it is not. OTOH it has no induced subgraph isomorphic to 4-vertex path, and it is the comparibility graph of the empty poset, so it kind of is. -- Jori Mäntysalo

Re: [sage-devel] On (di)graph generation

2017-10-12 Thread Jori Mäntysalo
minor-free ? transitively reduced ? True, and there has been a discussion about is_tree in this list. Anyways, different parts of Sage should use same definitions. -- Jori Mäntysalo

Re: [sage-devel] On (di)graph generation

2017-10-12 Thread Jori Mäntysalo
le we have a method of generating iso-classes of trees in constant time per tree. This is meant to be a useful general-purpose generator. True. -- Jori Mäntysalo

Re: [sage-devel] On (di)graph generation

2017-10-11 Thread Jori Mäntysalo
graph, is preserved if you delete a vertex but not if you delete an edge.  True. But it is propably not what one will generate orderly... -- Jori Mäntysalo

[sage-devel] On (di)graph generation

2017-10-10 Thread Jori Mäntysalo
is augment='edges' usefull? Is sum(sum(1 for _ in graphs(i, augment='edges')) for i in range(9)) faster in someone's computer than sum(1 for _ in graphs(8, augment='vertices')) ? -- Jori Mäntysalo

Re: [sage-devel] Re: Graphs: Hamiltonian path vs. cycle

2017-10-10 Thread Jori Mäntysalo
On Tue, 10 Oct 2017, Dima Pasechnik wrote: I cannot think of a reason other than different authors/reviewers, different weather, different amount of coffee... :-) Haha. I opened #24003 for this, but will wait some days to see if there will be more comments. -- Jori Mäntysalo

[sage-devel] Graphs: Hamiltonian path vs. cycle

2017-10-10 Thread Jori Mäntysalo
Try g = graphs.StarGraph(3) print(g.hamiltonian_path()) print(g.hamiltonian_cycle()) Is there a reason for this? If not, which way we should correct it? (#23994 is waiting for a review, will also depend on this.) -- Jori Mäntysalo

Re: [sage-devel] Re: From SageNB to jupyter

2017-09-19 Thread Jori Mäntysalo
/hubshare/issues/15 Maybe I wait for this to stabilize and then try to install all parts and see if it works. -- Jori Mäntysalo

Re: [sage-devel] Security in sage (was How much do we support optional packages)

2017-09-18 Thread Jori Mäntysalo
And I have used bc as an example of using xinetd to make a simple listener for telnet connections. Fortunately the bug was corrected before my example. -- Jori Mäntysalo

Re: [sage-devel] Re: How much do we support optional packages.

2017-09-15 Thread Jori Mäntysalo
-- lead a compromise to the server. -- Jori Mäntysalo

Re: [sage-devel] Re: From SageNB to jupyter

2017-09-08 Thread Jori Mäntysalo
On Thu, 7 Sep 2017, Volker Braun wrote: You can share worksheets just by uploading them to github, for example: Isn't that publishing worksheet, not sharing? -- Jori Mäntysalo

[sage-devel] Re: From SageNB to jupyter

2017-09-07 Thread Jori Mäntysalo
LDAP or Shibboleth, so that everyone with an account on them can just sign in to Sage. - Local user accounts too. - Security, so that a user A can not see worksheets for user B. - Importing SageNB worksheet to a new system worksheet. -- Jori Mäntysalo

Re: [sage-devel] Re: SageNB, publishing and error 500

2017-09-06 Thread Jori Mäntysalo
, as that change did, though I could be barking up the wrong tree too.   Thanks for pursuing this. Another question: Can I downgrade SageNB when waiting correction for this bug? Is so, how? -- Jori Mäntysalo

[sage-devel] Re: SageNB, publishing and error 500

2017-09-05 Thread Jori Mäntysalo
I have tried to grep the source, but without help. * * * However, this seems to be documented bug already: https://github.com/sagemath/sagenb/issues/432 -- Jori Mäntysalo

Re: [sage-devel] RFC: Draft blog post on Sage for Windows

2017-08-31 Thread Jori Mäntysalo
)? -- Jori Mäntysalo

Re: [sage-devel] Re: Random testing for finite lattices

2017-08-30 Thread Jori Mäntysalo
() is broken or dual() is broken, but we don't know which one. -- Jori Mäntysalo

Re: [sage-devel] Re: Random testing for finite lattices

2017-08-30 Thread Jori Mäntysalo
the tests are in there, we can see how many of them are better lifted to the category of FiniteLattticePosets as _tests_* methods. I think I didn't understood. Categories of posets ja lattices contains just few functions. A PoC code? -- Jori Mäntysalo

Re: [sage-devel] Re: Random testing for finite lattices

2017-08-30 Thread Jori Mäntysalo
n or b) smaller regression that happens in some slow function. -- Jori Mäntysalo

Re: [sage-devel] Re: Random testing for finite lattices

2017-08-30 Thread Jori Mäntysalo
function -- if something very odd happens and for example is_modular() takes a minute instead of few milliseconds, it would be noticed. -- Jori Mäntysalo

Re: [sage-devel] Re: SageNB, publishing and error 500

2017-08-29 Thread Jori Mäntysalo
going, not something that could be corrected by changing href="foo" to href=".foo". Would be nice if Someone Else(tm) could check this. -- Jori Mäntysalo

  1   2   3   4   5   6   >