projects
/
valse.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
re-indent (I should really add a hook...)
[valse.git]
/
pkg
/
src
/
sources
/
EMGrank.h
1
#ifndef valse_EMGrank_H
2
#define valse_EMGrank_H
3
4
#include
"utils.h"
5
6
void
EMGrank_core
(
7
// IN parameters
8
const
Real
*
Pi
,
9
const
Real
*
Rho
,
10
int
mini
,
11
int
maxi
,
12
const
Real
*
X
,
13
const
Real
*
Y
,
14
Real tau
,
15
const int
*
rank
,
16
// OUT parameters
17
Real
*
phi
,
18
Real
*
LLF
,
19
// additional size parameters
20
int
n
,
21
int
p
,
22
int
m
,
23
int
k
);
24
25
#endif