Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
23950: update interface
Browse files Browse the repository at this point in the history
  • Loading branch information
rwst committed Oct 1, 2017
1 parent 7ebc234 commit 5425450
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/sage/libs/pynac/pynac.pxd
Expand Up @@ -97,6 +97,7 @@ cdef extern from "sage/libs/pynac/wrap.h":

cdef cppclass GEx "ex":
GEx()
GEx(GNumeric o)
GEx(GSymbol m)
GEx(GEx m)
GEx(long n)
Expand Down Expand Up @@ -127,8 +128,8 @@ cdef extern from "sage/libs/pynac/wrap.h":
GEx numer() except +
GEx denom() except +
GEx numer_denom() except +
int degree(GEx expr) except +
int ldegree(GEx expr) except +
GNumeric degree(GEx expr) except +
GNumeric ldegree(GEx expr) except +
GEx unit(GEx expr) except +
GEx content(GEx expr) except +
GEx primpart(GEx expr) except +
Expand Down Expand Up @@ -161,6 +162,7 @@ cdef extern from "sage/libs/pynac/wrap.h":

# Algorithms
GEx g_gcd "gcd"(GEx a, GEx b) except +
bint g_factor "factor"(GEx expr, GEx res) except +
GEx g_gosper_term "gosper_term"(GEx the_ex, GEx n) except +
GEx g_gosper_sum_definite "gosper_sum_definite"(GEx the_ex,
GEx n, GEx a, GEx b, int* p) except +
Expand Down

0 comments on commit 5425450

Please sign in to comment.