Custom Query (733 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (4 - 6 of 733)

1 2 3 4 5 6 7 8 9 10 11 12
Ticket Resolution Summary Owner Reporter
#862 fixed 014a3fc56af1eccf927fd97202a3aa15d4b59cce causes crash when running multi-threaded code somebody arojas@…
Description

Commit 014a3fc56af1eccf927fd97202a3aa15d4b59cce causes a crash when calling the library from multiple threads, such as when running the sagemath test suite

***omError_FreedAddrOrMemoryCorrupted: addr had previosuly been freed  or memory corrupted
 occurred at:  ??
 occurred for addr:0x7f51ddc57068 size:8 freed
#336 wontfix 0c is not accepted for parameters, but only in the form 0*c hannes gorzel
Description

For parameters, unlike variables, an input in the form 0c is not accepted.

> ring rc0 =(0,c),x,dp;
> setring rc0;
> 2x;
2*x
> 0x;    // OK
0
> 2c;    // OK
(2c)
> 0c;   // Bug here
   ? `0c` is undefined
   ? error occurred in or before STDIN line 23: `0c;`
> 0*c;       // the * should not be required
0

Certainly, nobody wants to write explicitely something like "0cx" but the problem is that reduction of equations modulo a prime number will lead to such terms.

> ring rc5 = (5,c),x,dp;
> 5x;
0
> 5c;
   ? `5c` is undefined
   ? error occurred in or before STDIN line 27: `5c;`
> 5*c;
0

#600 fixed 1 x 1 bigintmat cannot be created hannes anonymous
Description

bigintmat b[1][1] = 7;

? bigintmat(b) = int is not supported ? expected bigintmat = bigintmat ? error occurred in or before STDIN line 3: bigintmat b[1][1] = 7;

1 2 3 4 5 6 7 8 9 10 11 12
Note: See TracQuery for help on using queries.