Home
last modified time | relevance | path

Searched refs:minroots (Results 1 – 12 of 12) sorted by relevance

/dports/math/cado-nfs/cado-nfs-f4284e2391121b2bfb97bc4880b6273c7250dc2f/sieve/
H A Dlas-trialdiv.cpp26 …me_info pi, unsigned long pmax, cxx_mpz_poly const & f, gmp_randstate_ptr rstate, int minroots = 1) in append_prime_list() argument
29 ASSERT_ALWAYS(minroots <= f->deg); in append_prime_list()
36 mpz_poly_roots_ulong (NULL, f, p, rstate) >= minroots) in append_prime_list()
90 for(int minroots = 1 ; minroots <= f->deg ; minroots++) { in get_trialdiv_data() local
92 pi, MIN(pmax, minroots * fbK.td_thresh), f, rstate, minroots); in get_trialdiv_data()
/dports/math/coxeter3/coxeter-7b5a1f0/
H A Dminroots.h14 namespace minroots {
20 namespace minroots {
28 namespace minroots {
43 namespace minroots {
50 namespace minroots {
65 namespace minroots {
71 class minroots::MinTable {
112 namespace minroots {
H A Dmakefile112 automata.h bits.h minroots.h dotval.h graph.h type.h transducer.h \
123 minroots.h dotval.h graph.h type.h transducer.h stack.h stack.hpp \
127 interface.h automata.h bits.h minroots.h dotval.h graph.h type.h \
144 interface.h automata.h minroots.h dotval.h transducer.h kl.h \
150 interface.h automata.h bits.h minroots.h dotval.h graph.h type.h \
162 interface.h automata.h bits.h minroots.h dotval.h graph.h type.h \
168 interface.h automata.h minroots.h dotval.h transducer.h
172 interface.h automata.h bits.h minroots.h dotval.h graph.h type.h \
210 minroots.o: minroots.cpp minroots.h globals.h bits.h list.h memory.h \
215 coxtypes.h minroots.h dotval.h graph.h type.h transducer.h
[all …]
H A Dminroots.cpp11 using namespace minroots;
1037 namespace minroots { namespace
1540 Length minroots::depth(MinTable& T, MinNbr r) in depth()
1561 LFlags minroots::descent(MinTable& T, MinNbr r) in descent()
1574 CoxWord& minroots::reduced(MinTable& T, MinNbr r) in reduced()
1613 LFlags minroots::support(MinTable& T, MinNbr r) in support()
1649 String& minroots::append(String& str, const DotVal& a) in append()
1702 void minroots::print(FILE *file, MinTable& T) in print()
H A Daffine.cpp31 using namespace minroots;
H A Dinterface.h25 using namespace minroots; variable
H A Dcoxgroup.h80 using namespace minroots; variable
H A DINTRO.tex245 in the function {\tt MinTable::prod} in {\tt minroots.cpp}.
255 in more detail at the beginning of {\tt minroots.cpp}. The upshot is that
/dports/math/R-cran-fracdiff/fracdiff/R/
H A Dfracdiff.R263 minroots <- min(Mod(polyroot(c(1, -ar)))) functionVar
264 if(minroots <= 1) {
266 minroots <- 1.01 # -> n.start= 603 by default
270 n.start <- p + q + ifelse(p > 0, ceiling(6/log(minroots)), 0)
/dports/math/R/R-4.1.2/src/library/stats/R/
H A Dts.R815 minroots <- min(Mod(polyroot(c(1, -model$ar)))) functionVar
816 if(minroots <= 1) stop("'ar' part of model is not stationary")
820 ifelse(p > 0, ceiling(6/log(minroots)), 0)
/dports/math/libRmath/R-4.1.1/src/library/stats/R/
H A Dts.R815 minroots <- min(Mod(polyroot(c(1, -model$ar)))) functionVar
816 if(minroots <= 1) stop("'ar' part of model is not stationary")
820 ifelse(p > 0, ceiling(6/log(minroots)), 0)
/dports/math/R-cran-forecast/forecast/R/
H A Dsimulate.R167 minroots <- min(Mod(polyroot(c(1, -model$ar)))) functionVar
168 if (minroots <= 1) {