Commit graph

27 commits

Author SHA1 Message Date
8c99826160
attempt to fix test regression in older julia versions 2026-01-27 13:57:52 -08:00
e21df477fc
9j caching to canonical lexicographical order w/ regge sym 2026-01-27 13:18:08 -08:00
24dcb1132b
fix wigner9j extra @testset typo 2024-09-03 18:07:20 -07:00
152d52595e
add wigner9j symbols. update README, .gitignore Manifest 2024-08-15 07:18:17 -07:00
Jutho Haegeman
9359a9bdc4 disable multithreading on windows 2021-06-15 12:10:00 +02:00
Jutho Haegeman
7755a7581d re-enable test single threaded 2021-06-15 01:52:23 +02:00
Jutho Haegeman
72390181ad try disabling failing windows tests 2021-06-15 01:42:30 +02:00
Jutho Haegeman
f2a1754c3c small test change (again) 2021-06-15 01:34:00 +02:00
Jutho Haegeman
87177d0da5 small test change 2021-06-15 01:29:40 +02:00
Jutho Haegeman
b1303b9b79 major update, thread safety, improved efficiency 2021-06-11 15:50:25 +02:00
Jutho Haegeman
2800b274ea clean up tests 2019-07-29 17:18:53 +02:00
Jutho Haegeman
e5efd21bdf add test: wigner3j orthogonality 2019-07-29 12:25:35 +02:00
Jutho
a5ee2d5fc6
Switch to using HalfIntegers (#6)
* swich to using HalfIntegers, add project.toml, bump version, update CI

* add Random and add seed to avoid unlikely test failure
2019-07-09 00:53:40 +02:00
Morten Piibeleht
6ddbd340b0 Make convert(Real, ::HalfInteger) yield HalfInteger (#5)
As HalfInteger <: Real, there should be no reason to convert anything in
this situation. It happens because the convert method resorts to Float64
as an intermediate value.

To still get conversion to floats, we can just dispatch on AbstractFloat
instead. However, it should be better to convert the numerator to T
first and then divide, so that we would not use a potentially lower
precision intermediate value.

This solves the problem where calling sum on an vector of HalfIntegers
yields a floating point value, even though there is no reason to convert
in the summation:

julia> sum([HalfInteger(1//2), HalfInteger(3//2)])
2.0

This is because there is an implicit convert(::Real) in the Base.add_sum
function. With this patch the sum call correctly yields a HalfInteger.

It also updates the tests related to HalfInteger convert methods:

 - Make sure that the convert tests also check types
 - Add a few tests for converting out of HalfInteger
2019-02-21 00:16:26 +01:00
Morten Piibeleht
8ebb2c791b Partially revamp the HalfInteger type (#4)
* Call the HalfInteger field twofold

Makes it more immediately obvious what the meaning of the value stored
in the field is.

* Introduce new constructors for HalfInteger

The primary inner constructor mirrors the two-argument constructor of
the Rational type, where the user provides the numerator and denominator
values.

There is also a single argument outer constructor that makes HalfInteger
behave like a normal numeric type such that HalfInteger(n) == n.

* Move HalfInteger tests to a separate file

The using statements in halfinteger.jl are there so that it would be
possible to run the file separately from the other tests.

* Test the single-argument HalfInteger constructor

* Organize halfinteger.jl a bit

Prioritise the convert methods.

* Add multiplication with integer to HalfInteger

* Implement parsing and printing for HalfInteger

* parse(::HalfInteger, x) method
* Overload show to pretty-print HalfInteger

* Overload Base.numerator/denominator

And add tests for the other supplementary functions and methods as
well.

* Add HalfIntegerRange type

Can be constructed using the range operator :. Currently only supports
unit steps in the positive direction.

* Address feedback

* Rename .twofold -> .numerator
* Consistent variable names
* Remove unnecessary methods for HalfIntegerRange

* Allow constructing HalfIntegerRange with non-integer difference

* Add docs and ceil(::HalfInteger)
2019-01-10 21:50:46 +01:00
Jutho
39bbd0ced8 update HalfInteger 2018-10-05 17:20:22 +02:00
Jutho Haegeman
3400fe8577 update tests 2018-07-10 02:07:31 +02:00
Jutho Haegeman
dd208b42a6 first attempt to (exclusive) v0.7 compatibility 2018-06-21 23:29:33 +02:00
Jutho Haegeman
cdb460332c speed improvement plus v0.7 compatibility 2018-01-31 17:10:37 +08:00
Jutho Haegeman
b734fe001f Update for latest version of v0.7 2017-12-08 00:52:21 +01:00
Jutho Haegeman
dd75309fe6 Enable precompilation 2017-10-27 16:28:53 +02:00
Jutho Haegeman
258246f854 add MPZ for 0.6 compatibility; update REQUIRE, add testsets 2017-10-14 01:33:52 +02:00
Jutho
b3f65e9b46 Remove @show in tests 2017-08-12 00:22:07 +02:00
Jutho
07efc88cf7 Change test tolerance due to julia#22742
See https://github.com/JuliaLang/julia/pull/22742
2017-08-12 00:18:04 +02:00
Jutho
1a974193eb add help and more tests 2017-08-11 12:55:57 +02:00
Jutho
56b02ebcf2 3j and 6j working and tested 2017-08-09 17:12:37 +02:00
Jutho
a5395dca5b WignerSymbols.jl generated files.
license:  MIT
    authors:  Jutho
    years:    2017
    user:     jutho

Julia Version 0.7.0-DEV.1283 [4fea203375]
2017-08-08 11:23:18 +02:00