Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
Katerina Chatziioannou
bayeswave
Commits
9b58d5c5
Commit
9b58d5c5
authored
Oct 06, 2020
by
Marcella Wijngaarden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow chain swaps in burnin
parent
3a7f2fc0
Pipeline
#160237
failed with stages
in 57 seconds
Changes
3
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
201 additions
and
179 deletions
+201
-179
src/BayesCBC.c
src/BayesCBC.c
+200
-177
src/BayesCBC_internals.h
src/BayesCBC_internals.h
+1
-1
src/BayesWaveIO.c
src/BayesWaveIO.c
+0
-1
No files found.
src/BayesCBC.c
View file @
9b58d5c5
This diff is collapsed.
Click to expand it.
src/BayesCBC_internals.h
View file @
9b58d5c5
...
...
@@ -189,7 +189,7 @@ void CBC_start(struct Net *net, int *mxc, FILE *chainI, double **paramx, double
void
CBC_update
(
struct
Net
*
net
,
int
*
mxc
,
FILE
*
chainI
,
FILE
*
chainE
,
double
**
paramx
,
double
**
skyx
,
double
**
pallx
,
int
*
who
,
double
*
heat
,
double
***
history
,
double
***
global
,
RealVector
*
freq
,
double
**
D
,
double
**
SN
,
int
N
,
double
Tobs
,
gsl_rng
*
r
,
struct
bayesCBC
*
rundata
);
void
MCMC_intrinsic
(
struct
Net
*
net
,
int
lmax
,
int
*
mxc
,
int
M
,
FILE
*
chain
,
double
**
paramx
,
double
**
skyx
,
double
**
pallx
,
double
*
heat
,
double
***
history
,
double
***
global
,
RealVector
*
freq
,
double
**
D
,
double
**
SN
,
int
N
,
double
Tobs
,
gsl_rng
*
r
,
struct
bayesCBC
*
rundata
);
void
MCMC_intrinsic
(
struct
Net
*
net
,
int
lmax
,
int
*
mxc
,
int
M
,
FILE
*
chain
,
double
**
paramx
,
double
**
skyx
,
double
**
pallx
,
int
*
who
,
double
*
heat
,
double
***
history
,
double
***
global
,
RealVector
*
freq
,
double
**
D
,
double
**
SN
,
int
N
,
double
Tobs
,
gsl_rng
*
r
,
struct
bayesCBC
*
rundata
);
void
skymcmc
(
struct
Net
*
net
,
int
MCX
,
int
*
mxc
,
FILE
*
chain
,
double
**
paramx
,
double
**
skyx
,
double
**
pallx
,
int
*
who
,
double
*
heat
,
double
dtx
,
int
nt
,
double
*
DD
,
double
**
WW
,
double
***
DHc
,
double
***
DHs
,
double
***
HH
,
double
Tobs
,
gsl_rng
*
r
,
struct
bayesCBC
*
rundata
);
...
...
src/BayesWaveIO.c
View file @
9b58d5c5
...
...
@@ -1741,7 +1741,6 @@ void parse_command_line(struct Data *data, struct Chain *chain, struct Prior *pr
{
char
command
[
1024
];
sprintf
(
command
,
"%s"
,
ppt
->
value
);
printf
(
"'%s'
\n
"
,
command
);
if
(
strstr
(
command
,
"NoNRT_V"
)
!=
NULL
)
data
->
NX
=
7
;
else
data
->
NX
=
9
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment