Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-07-30 | Add build support for meson | zhuyaliang | 2 | -0/+121 | |
2021-07-28 | integrate unittest into test-mp-equation | mbkma | 3 | -790/+103 | |
2021-07-09 | Fix declaration/definition mismatches | Harald van Dijk | 1 | -7/+7 | |
Commit 869de6d8 changed the signatures of definitions of various mp_* functions but did not update the declarations in mp.h to match. | |||||
2021-06-21 | update copyright to 2021 | raveit65 | 4 | -4/+4 | |
2021-03-22 | history view follows preferences | mbkma | 6 | -45/+90 | |
2021-03-19 | mp-serializer: init MPNumbers outside of loop | mbkma | 1 | -8/+8 | |
2021-03-18 | mp.c: mp_reciprocal: fix when calling it with same arguments. | mbkma | 1 | -2/+5 | |
2021-03-18 | mp-serializer: fix memory leaks reported by valgrind | mbkma | 1 | -3/+9 | |
2021-03-18 | math-buttons: fix memory leaks reported by valgrind | mbkma | 1 | -1/+5 | |
2021-02-18 | factorization: display prime factors in fixed number format | mbkma | 1 | -0/+4 | |
2021-02-02 | build: Use PACKAGE_URL variable | rbuj | 1 | -1/+1 | |
2021-02-02 | build: Use config.h which defines GETTEXT_PACKAGE & VERSION | rbuj | 3 | -2/+8 | |
2021-01-16 | Update copyright to 2021 | rbuj | 1 | -1/+1 | |
2020-12-16 | insert character dialog: add spacing, remove invisible char | mbkma | 1 | -4/+3 | |
2020-12-16 | remove unused trunc button from programming mode | mbkma | 2 | -695/+676 | |
2020-12-01 | Remove warning about unused parameters in `ìnt main` function | rbuj | 3 | -3/+3 | |
2020-12-01 | financial: Remove warnings about unused parameter 'equation' | rbuj | 1 | -18/+18 | |
2020-11-25 | math-buttons: Remove warnings about format not a string literal | rbuj | 1 | -8/+6 | |
2020-11-24 | Remove unused macros | rbuj | 2 | -5/+0 | |
2020-11-20 | Show factorization in history view. | mbkma | 1 | -4/+39 | |
Show exponents in factorization. | |||||
2020-11-09 | Fix most conversion warnings. | mbkma | 8 | -56/+53 | |
2020-11-09 | Improve factorization speed | mbkma | 2 | -39/+231 | |
- implements Miller-Rabin primality test - implements Pollard's rho algorithm to find prime factors - adds mp_new_from_integer function for convenience | |||||
2020-09-04 | fix calulation of x^q, where 1/q is a negative integer | mbkma | 2 | -0/+3 | |
2020-09-04 | Clear answer if editing right before it | mbkma | 1 | -2/+2 | |
2020-09-04 | Refresh bits panel after calculation | mbkma | 1 | -0/+3 | |
2020-08-19 | Correct Astronomical unit (to 149597870700 m) | Thomas Nilsson | 1 | -1/+1 | |
The IAU changed the definition back in 2012 so that 1 au == 149 597 870 700 m exactly, the BIPM then followed in recognizing this value. Ref: https://www.nature.com/news/the-astronomical-unit-gets-fixed-1.11416 (doi:10.1038/nature.2012.11416) https://www.bipm.org/utils/common/pdf/si-brochure/SI-Brochure-9.pdf (latest brochure, specifically Tableau 8) | |||||
2020-08-04 | mp-convert: Remove trailing spaces/tabs | rbuj | 1 | -2/+2 | |
find . \( -name '*.h' -o -name '*.c' \) -exec sed -i 's/[[:space:]]*$//' {} \; find . \( -name '*.h' -o -name '*.c' \) -exec sed -i 's/\t*$//' {} \; | |||||
2020-07-13 | Implement navigation through history stack equations using keyboard | mbkma | 5 | -2/+66 | |
2020-07-05 | fixes incorrect parenthesis handling | mbkma | 2 | -4/+4 | |
reverts commit 731bdfe3591618759a44d9382b49952e781a01bd | |||||
2020-06-26 | add git.mk to generate .gitignore | tamplan | 1 | -0/+2 | |
2020-06-20 | math-history-entry: Reduce the macro scope and its argument number | rbuj | 1 | -5/+7 | |
2020-06-16 | math-display: Remove unused macro | rbuj | 1 | -2/+0 | |
2020-06-16 | math-equation: Fix memory leak | rbuj | 1 | -0/+1 | |
2020-04-25 | Fix empty string return for canceling complex expressions | Rolfe Power | 1 | -1/+4 | |
2020-04-14 | Remove -Wshadow warnings | rbuj | 5 | -13/+13 | |
2020-04-09 | Use only one mp_clear statement per line | rbuj | 5 | -15/+54 | |
2020-04-08 | build: Remove redundant LDFLAGS | rbuj | 1 | -16/+4 | |
2020-04-08 | Add modular exponentiation ability and add acccording tests | mbkma | 4 | -14/+87 | |
2020-04-08 | test-mp-equation: Fix memory leak | rbuj | 1 | -1/+4 | |
2020-04-08 | parserfunc: fix memory leak | rbuj | 1 | -1/+7 | |
2020-04-07 | history-view: simplify code and add clear option | Johannes Unruh | 5 | -82/+84 | |
2020-04-07 | math-buttons: add space character after inverse trig. functions | Johannes Unruh | 1 | -3/+3 | |
2020-04-01 | math-window: show GNU MPFR and GNU MPC version in about dialog | Pablo Barciela | 1 | -1/+6 | |
2020-03-28 | math-display.c: set bottom margin to 12 for gtk widget info_view | mbkma | 1 | -0/+1 | |
2020-03-19 | clear MPNumbers before return | mbkma | 2 | -9/+26 | |
2020-03-18 | add Riemann zeta function and Gauss error function | mbkma | 4 | -0/+53 | |
2020-03-16 | parserfunc: fix crash when calculating nested pow | mbkma | 2 | -1/+13 | |
2020-03-10 | Remove warnings: function declaration isn’t a prototype | rbuj | 3 | -6/+6 | |
2020-03-08 | unittest.c: replace tabs with spaces | mbkma | 1 | -624/+624 | |
2020-03-08 | Port to GNU MPFR/MPC Library | mbkma | 26 | -2929/+877 | |
For further information please visit: https://www.mpfr.org/ http://www.multiprecision.org/mpc |