Paul Zinn-Justin

Results 209 comments of Paul Zinn-Justin

BTW an easy fix would be to add something like ``` if isUnit y then return x*y^-1 ``` to the code for `x/y`. but one has to decide whether this...

ah, good, it's not related to my PR :)

making it a mutable matrix also solves the problem.

(copied from zulip) a tangentially related issue. Say one defines a new function `myfunc`, then neither in emacs nor in the webapp will the autocompletion work if one types say...

@d-torrance's answer: > I've played around with this a bit. We could potentially do something like call apropos to get a list of possible autocompletions, but output it in such...

continuing my digression, I'm assuming this is the relevant part of `expr.d`: ``` export completions(s:string):array(string) := ( n := length(s); if n == 0 then return array(string)(); -- don't complete...

sorry I just noticed this PR. I will take a look now. (usual rant, why don't I get notified when a review is requested of me?)

should we switch to Anton's version?

In `LieTypes` I actually disabled `BinaryPowerMethod`: ``` -- the implementation below seems more reasonable but it's actually slower in most circumstances LieAlgebraModule ^** ZZ := LieAlgebraModule => (M, n) ->...

Incidentally, I also don't understand why the last 2 arguments of `BinaryPowerMethod` are functions.