aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/biveval.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/biveval.c b/src/biveval.c
index ba34e085..5dca4792 100644
--- a/src/biveval.c
+++ b/src/biveval.c
@@ -77,7 +77,14 @@ bpseval(projUV in, Tseries *T) {
}
return out;
}
- projUV /* general entry point selecting evaluation mode */
+
+projUV /* general entry point selecting evaluation mode */
biveval(projUV in, Tseries *T) {
- return (T->power ? bpseval(in, T) : bcheval(in, T));
+
+ if (T->power) {
+ return bpseval(in, T);
+ } else {
+ return bcheval(in, T);
+ }
}
+