[fricas-devel] Wayland and no X

2019-07-22 Thread Ralf Hemmecke
Does someone know whether Wayland without an X server is problematic for FriCAS? Ralf -- You received this message because you are subscribed to the Google Groups "FriCAS - computer algebra system" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [fricas-devel] [PATCH] "#" is only defined for finiteAggregate

2019-07-22 Thread Waldek Hebisch
oldk1331 wrote: > > Function "#" is defined when "% has finiteAggregate", and the > implementation should also fall under this condition, so I fixed > this for URAGG: OK, please commit. -- Waldek Hebisch -- You received this message because you are subscribed to

Re: [fricas-devel] [PATCH] move "first(x, n)" from STAGG to URAGG

2019-07-22 Thread Waldek Hebisch
oldk1331 wrote: > > This patch move the implementation of "first(x, n)" from > STAGG to URAGG; also add a specialized version for List. OK, please commit. -- Waldek Hebisch -- You received this message because you are subscribed to the Google Groups "FriCAS -

Re: [fricas-devel] [PATCH] remove Reference for Domain local variables

2019-07-22 Thread Waldek Hebisch
oldk1331 wrote: > > There is no need to use Reference for Domain local variables, > they can be used directly in functions. So remove the usage > of Reference for consistency and less verbosity. OK, please commit. -- Waldek Hebisch -- You received this message

Re: [fricas-devel] [PATCH] remove "NegativeInteger"

2019-07-22 Thread Waldek Hebisch
oldk1331 wrote: > This type "NegativeInteger" is only referenced in compiler > and not used anymore, I think it's safe to remove. Yes, please commit. -- Waldek Hebisch -- You received this message because you are subscribed to the Google Groups "FriCAS -

[fricas-devel] [PATCH] remove "NegativeInteger"

2019-07-22 Thread oldk1331
This type "NegativeInteger" is only referenced in compiler and not used anymore, I think it's safe to remove. diff --git a/src/interp/compiler.boot b/src/interp/compiler.boot index 8aba6f5c..ef05461b 100644 --- a/src/interp/compiler.boot +++ b/src/interp/compiler.boot @@ -341,7 +341,7 @@

[fricas-devel] [PATCH] remove Reference for Domain local variables

2019-07-22 Thread oldk1331
There is no need to use Reference for Domain local variables, they can be used directly in functions. So remove the usage of Reference for consistency and less verbosity. -- You received this message because you are subscribed to the Google Groups "FriCAS - computer algebra system" group. To

[fricas-devel] [PATCH] move "first(x, n)" from STAGG to URAGG

2019-07-22 Thread oldk1331
This patch move the implementation of "first(x, n)" from STAGG to URAGG; also add a specialized version for List. -- You received this message because you are subscribed to the Google Groups "FriCAS - computer algebra system" group. To unsubscribe from this group and stop receiving emails from

[fricas-devel] [PATCH] "#" is only defined for finiteAggregate

2019-07-22 Thread oldk1331
Function "#" is defined when "% has finiteAggregate", and the implementation should also fall under this condition, so I fixed this for URAGG: --- a/src/algebra/aggcat.spad +++ b/src/algebra/aggcat.spad @@ -1466,12 +1466,6 @@ while not empty? l and i > 0 repeat (l := rest l; i := i - 1)