Skip to content

Commit 3c8bf37

Browse files
committed
Bumped version to 2.2.2 in preparation for new binary packages.
1 parent 3b41a05 commit 3c8bf37

File tree

3 files changed

+19
-10
lines changed

3 files changed

+19
-10
lines changed

cmake/version.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
set(CADABRA_VERSION_MAJOR 2)
22
set(CADABRA_VERSION_MINOR 2)
3-
set(CADABRA_VERSION_PATCH 1)
3+
set(CADABRA_VERSION_PATCH 2)
44
set(CADABRA_VERSION_TWEAK 0)
55
set(COPYRIGHT_YEARS "2001-2018")
66
math(EXPR SYSTEM_BITS "${CMAKE_SIZEOF_VOID_P} * 8")

config/buildbot.sh

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,17 @@ function runbuild {
5555

5656
# Parameters: VM name, package type, local ssh port, folder name on web server.
5757

58-
# runbuild "Ubuntu_16.04_build" ".deb" 7000 ubuntu1604
58+
runbuild "Ubuntu_16.04_build" ".deb" 7000 ubuntu1604
5959
# ## runbuild "Fedora_24_build" ".rpm" 7001 fedora24
6060
# runbuild "Fedora_26" ".rpm" 7011 fedora26
61-
# runbuild "Fedora_27" ".rpm" 7015 fedora27
62-
# runbuild "Mint_18" ".deb" 7002 mint18
63-
# runbuild "OpenSUSE_Leap" ".rpm" 7003 opensuse421
64-
# runbuild "CentOS_7" ".rpm" 7004 centos7
61+
runbuild "Fedora_27" ".rpm" 7015 fedora27
62+
runbuild "Fedora_28" ".rpm" 7020 fedora28
63+
runbuild "Mint_18" ".deb" 7002 mint18
64+
runbuild "OpenSUSE_Leap" ".rpm" 7003 opensuse421
65+
runbuild "CentOS_7" ".rpm" 7004 centos7
6566
# ## runbuild "Ubuntu_14.04_build" ".deb" 7005 ubuntu1404
6667
# runbuild "Ubuntu_17.10" ".deb" 7012 ubuntu1710
6768
# ## runbuild "Debian86" ".deb" 7006 debian86
6869
# ## runbuild "Scientific_Linux_74" ".rpm" 7013 scientific74
69-
# runbuild "Debian_921" ".deb" 7014 debian9
70+
runbuild "Debian_921" ".deb" 7014 debian9
7071
runbuild "Ubuntu_18.04" ".deb" 7017 ubuntu1804

tests/kerr.cnb

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
kernel(scalar_backend="mathematica")
2+
13
{t,r,\theta,\phi}::Coordinate;
24
{\mu,\nu,\rho,\sigma,\kappa,\lambda}::Indices(values={t,r,\phi,\theta}, position=fixed).
35
rs::LaTeXForm("r_s").
@@ -17,8 +19,14 @@ kerr:= { g_{t t} = - (1 - rs r / \Sigma),
1719

1820
complete(kerr, $g^{\mu\nu}$);
1921

20-
import cdb.relativity as gr
22+
DeltaSigma:= { \Delta = r**2 - 2 m r + a**2, \Sigma = r**2 + a**2 \cos(\theta)**2 };
23+
24+
substitute(kerr, DeltaSigma)
25+
simplify(kerr);
26+
display(kerr)
2127

22-
ch = gr.christoffel_from_metric()
23-
evaluate(ch, kerr, rhsonly=True);
28+
# import cdb.relativity as gr
29+
#
30+
# ch = gr.christoffel_from_metric()
31+
# evaluate(ch, kerr, rhsonly=True);
2432

0 commit comments

Comments
 (0)