h1 + h2
| 903 | |
| 904 | /// h1 + h2 |
| 905 | ideal id_Add (ideal h1,ideal h2, const ring r) |
| 906 | { |
| 907 | id_Test(h1, r); |
| 908 | id_Test(h2, r); |
| 909 | |
| 910 | ideal result = id_SimpleAdd(h1,h2,r); |
| 911 | id_Compactify(result,r); |
| 912 | return result; |
| 913 | } |
| 914 | |
| 915 | /// h1 * h2 |
| 916 | /// one h_i must be an ideal (with at least one column) |
no test coverage detected