Paul Zinn-Justin

Results 209 comments of Paul Zinn-Justin

You suggested to modify `netWidth` in `d/actors5.d`. I'd like to give it a try (unless someone else volunteers!). Yes, you can assign me to this issue.

A related issue with `\t` is the fact that somewhere in the d code its width is hardcoded due to the following lines in stdiop.d: ``` else if c ==...

One incompatibility with the built-in permutations is that they start at 0, not 1.

it's not so clear how to use `pseudocode` for this: ![Screenshot from 2024-07-18 21-58-48](https://github.com/user-attachments/assets/f3d989fb-4f48-435f-8c1c-6bb9bf9fd376) one can isolate the offending part of the code, but then one can't evaluate it because...

how? M2 is not a typed language... except for arguments of methods I suppose?

okay. a related thing which annoys me is the content of `robust.m2`, all these "fake" methods that produce an error. for example a script might go through the code above,...

Incidentally (since it would in particular resolve the issue I pointed out above): As part 2 of my series of debugging-related PRs, I would like to get rid of most...

funny, I had the same thought for a different reason, I wanted to define q-numbers, something like ``` [ZZ] := n -> (q^n-1)//(q-1) ```

Yeah it's been like this for as long as I can remember. During my `expression` upgrade I don't think I changed this behaviour. It's controlled by `net Adjacent` in `expressions.m2`....

I think `Set` entries be sorted when printed, just like `HashTable` -- I really don't like ``` i1 : set {a,b,c} o1 = set {c, a, b} o1 : Set...