Mentions légales du service

Skip to content
Snippets Groups Projects
  1. Aug 21, 2024
  2. Feb 26, 2024
  3. Feb 23, 2024
  4. Jan 12, 2024
  5. Jan 10, 2024
  6. Jan 09, 2024
    • Andreas Enge's avatar
      Add code for testing ECPP certificates. · 8ffc7576
      Andreas Enge authored
      The implementation can check partial certificates and also apply the
      stricter criterion of the CM certificates compared to the PARI/GP
      (and apparently Primo) certificates that the point order is prime.
      
      * lib/pari.c (cert_get_V, primecertentryisvalid, primecertpartialisvalid):
        New functions.
        (cm_pari_ecpp_check): Use primecertpartialisvalid.
      8ffc7576
  7. Sep 08, 2023
  8. Sep 06, 2023
    • Andreas Enge's avatar
      Add a news item. · fee53975
      Andreas Enge authored
      * NEWS: Document the previous commit.
      fee53975
    • Andreas Enge's avatar
      Add a maximum class number value to ECPP. · 2cfd5cca
      Andreas Enge authored
      Paul Underwood has reported a case where the previous code would use
      D = -15963964631 = -17 * 29 * 31 * 41 * 73 * 349 with class number
      249984 = 2^7 * 3^2 * 7 * 31, which is smooth, but too big.
      
      * lib/ecpp.c (compute_discriminants, compute_sorted_discriminants,
        expected_no_curves, find_ecpp_discriminant): Add parameter hmax and
        adapt function calls.
        (ecpp1): Set hmax to 100000 and adapt function call. Output the class
        number in verbose mode.
      2cfd5cca
    • Andreas Enge's avatar
      Correct and add output of progress information for class polynomials. · c66b40e5
      Andreas Enge authored
      * lib/modclass.c (compute_q24): Move printing of dots into loop. Add more
        of them.
      c66b40e5
  9. Aug 07, 2023
  10. Jul 04, 2023
  11. May 24, 2023
  12. May 23, 2023
    • Andreas Enge's avatar
      Add a configure check for FLINT version 3 or higher. · 6f4e8e9d
      Andreas Enge authored
      * configure.ac: Add a check and define or not HAVE_FLINT3.
      6f4e8e9d
    • Andreas Enge's avatar
      Compute the Tonelli-Shanks generator once and for all. · 3d1f1f2c
      Andreas Enge authored
      This provides a speed-up when several rounds are needed in the main loop
      for determining a CM discriminant, and in the MPI version it lets the
      clients idle more.
      
      * lib/cm-impl.h (cm_mpi_broadcast_N): Add parameters e, r and z to
        prototype.
      * lib/ecpp.c (compute_qroot): Add e, r and z as parameters to the non-MPI
        version and do not compute them.
        (find_ecpp_discriminant): Compute e, r and z and adapt function calls.
      * lib/mpi.c (cm_mpi_broadcast_N): Broadcast e, r and z.
        (mpi_worker): Receive e, r and z.
      3d1f1f2c
  13. May 22, 2023
    • Andreas Enge's avatar
      Hide function. · 2f875109
      Andreas Enge authored
      * lib/cm-impl.h (cm_nt_mpz_tonelli_with_generator): Remove function
        declaration.
      * lib/nt.c (cm_nt_mpz_tonelli_with_generator): Make function static.
      2f875109
    • Andreas Enge's avatar
      Completely encapsulate and separate PARI and FLINT interfaces. · 1e3e15a6
      Andreas Enge authored
      * lib/cm-impl.h: Do not include PARI or FLINT headers.
        (cm_flint_mpzx_xplusa_pow_modmod, cm_flint_mpzx_gcd_mod):
        Remove function declarations.
      * lib/cm.h (cm_pari_print_library, cm_flint_print_library,
        cm_flint_init, cm_flint_clear): Declare new functions.
      * lib/pari.c: Include pari.h.
        (cm_pari_print_library): New function.
        (cm_pari_init): Call cm_flint_init.
        (cm_pari_clear): Call cm_flint_clear.
      * lib/flint.c: Include FLINT headers.
        (cm_flint_mpzx_xplusa_pow_modmod, cm_flint_mpzx_gcd_mod):
        Make functions static.
        (cm_flint_print_library, cm_flint_init, cm_flint_clear): New function.
      * src/params.h: Do not include pari.h.
      * src/params.c (print_libraries): Call new functions.
      1e3e15a6
    • Andreas Enge's avatar
      Make CM compatible with FLINT 3. · dc73b344
      Andreas Enge authored
      * lib/cm-impl.h: Undefine conflicting preprocessor constants. These caused
        annoying, but harmless warning messages. Include more header files,
        which is no more automatic.
      * lib/flint.c (mpzx_set_fmpz_mod_poly, fmpz_mod_poly_set_mpzx): Use a
        temporary fmpz variable when converting between mpz and polynomial
        coefficients; the direct conversion functions have been removed in
        FLINT 3.
      dc73b344
    • Andreas Enge's avatar
      Clear FLINT at the same time as PARI. · 8c459943
      Andreas Enge authored
      * lib/pari.c (cm_pari_clear): Add a call to flint_cleanup.
      * lib/mpzx.c (mpzx_oneroot_split_mod): Drop call to flint_cleanup.
      8c459943
    • Andreas Enge's avatar
      Reorganise code to separate mpzx, pari and flint related functions. · 8b429265
      Andreas Enge authored
      * lib/cm-impl.h (cm_pari_good_root_of_unity, cm_pari_mpzx_divexact_mod):
        Declare as public.
        (cm_pari_mpzx_xplusa_pow_modmod, cm_pari_mpzx_gcd_mod,
        cm_flint_mpzx_xplusa_pow_modmod, cm_flint_mpzx_gcd_mod): Declare
        new functions.
      * lib/pari.c (good_root_of_unity): Rename to...
        (cm_pari_good_root_of_unity): ...this.
        (mpzx_divexact_mod): Rename to...
        (cm_pari_mpzx_divexact_mod): ...this.
        (cm_pari_mpzx_xplusa_pow_modmod, cm_pari_mpzx_gcd_mod): New functions.
        (mpzx_xplusa_pow_modmod, mpzx_monic_mod, mpzx_gcd_mod,
        mpzx_onefactor_split_mod): Move to...
      * lib/mpzx.c (mpzx_xplusa_pow_modmod, mpzx_monic_mod, mpzx_gcd_mod,
        mpzx_onefactor_split_mod): ...these.
        (mpzx_xplusa_pow_modmod, mpzx_gcd_mod): Use new functions.
      * lib/flint.c (cm_flint_mpzx_xplusa_pow_modmod, cm_flint_mpzx_gcd_mod):
        New functions.
      8b429265
  14. May 17, 2023
    • Andreas Enge's avatar
      Move to version 0.4.3dev. · 814ad592
      Andreas Enge authored
      * configure.ac, lib/cm.h, lib/get_version.c, doc/version.texi: Update
        version and date.
      814ad592
    • Andreas Enge's avatar
      Release 0.4.2. · 0e8536bf
      Andreas Enge authored
      * NEWS, configure.ac, lib/cm.h, lib/get_version.c, doc/version.texi:
        Update version and date.
      * lib/Makefile.am (libcm_la_LDFLAGS): Update version info.
      0.4.2
      0e8536bf
    • Andreas Enge's avatar
      Make sure factors of polynomials modulo p are monic. · f6a7a37d
      Andreas Enge authored
      The previous code worked with FLINT, which apparently normalises the gcd,
      but not with PARI.
      
      * lib/pari.c (mpzx_monic_mod): New function.
        (mpzx_gcd_mod, mpzx_oneroot_split_mod): Use new function.
      f6a7a37d
  15. Feb 24, 2023
    • Andreas Enge's avatar
      Document checkpointing. · 2547365c
      Andreas Enge authored
      * doc/cm.texi: Add a paragraph.
      * NEWS: Add an entry.
      2547365c
    • Andreas Enge's avatar
      Correct logic in class polynomial factoring. · 96946f63
      Andreas Enge authored
      * lib/pari.c (mpzx_oneroot_split_mod): Make sure that factors of factors
        are also read by only treating one factor per loop round.
      96946f63
    • Andreas Enge's avatar
      Add cm_ prefix to temporary files. · efef56ad
      Andreas Enge authored
      * lib/file.c (cm_file_write_h, cm_file_read_h, cm_file_write_primorial,
        cm_file_read_primorial, cm_file_write_factor, cm_file_read_factor):
        Prefix temporary files by "cm_".
      efef56ad
    • Andreas Enge's avatar
      Make checkpointing dependent on CM_ECPP_TMPDIR. · fe11a0d7
      Andreas Enge authored
      * lib/cm-impl.h (mpzx_oneroot_split_mod, cm_class_get_j_mod_p,
        cm_curve_and_point_stat, cm_ecpp_one_step2,
        cm_mpi_submit_ecpp_one_step2): Add tmpdir parameter.
      * lib/curve.c (cm_curve_and_point_stat, cm_curve_and_point): Add tmpdir
        parameter and adapt function calls.
      * lib/ecpp.c (ecpp2, cm_ecpp_one_step2, cm_ecpp): Add tmpdir parameter
        and adapt function calls.
      * lib/jmodp.c (get_root_mod_p, get_tower_root_mod_p,
        get_quadratic_tower_root_mod_p, cm_class_get_j_mod_p): Add tmpdir
        parameter and adapt function calls.
      * lib/mpi.c (cm_mpi_submit_ecpp_one_step2): Add tmpdir parameter and send
        it to workers.
        (mpi_worker): Receive tmpdir parameter.
      * lib/pari.c (mpzx_oneroot_split_mod): Add and treat tmpdir parameter.
      fe11a0d7
  16. Feb 20, 2023
Loading