Skip to content

Commit

Permalink
unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
assaferan committed Jun 22, 2023
1 parent 1126fe1 commit 6545c97
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 8 additions & 0 deletions src/traceAL_tools.c
Original file line number Diff line number Diff line change
Expand Up @@ -540,6 +540,14 @@ GEN traceAL(long N, long n, long k)
return ret;
}

// At the moment only workd for primes
GEN traceALNew(long N, long p, long k)
{
GEN ret = gen_0;

return ret;
}

GEN traceALprimes(long N, long k, long prec)
{
GEN p_list = primes0(mkvec2(mkintn(1,1), nextprime(mkintn(1,prec))));
Expand Down
2 changes: 0 additions & 2 deletions src/traceAL_tools.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ typedef struct {
long compressed;
} cache;

static THREAD cache caches[4];

GEN getcache(void);

void pari_close_mf(void);
Expand Down

0 comments on commit 6545c97

Please sign in to comment.