Skip to content

Commit

Permalink
Updated with SPLITT v1.2.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
Venelin Mitov committed Jul 21, 2019
1 parent 61f8b3a commit 814bc5e
Show file tree
Hide file tree
Showing 17 changed files with 223 additions and 238 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
@@ -1,8 +1,8 @@
Package: PMMUsingSPLITT
Type: Package
Title: Calculating the Likelihood of Phylogenetic Mixed Models using the 'SPLITT' Library
Version: 1.0.1
Date: 2018-11-15
Version: 1.0.2
Date: 2019-07-21
Authors@R: person("Venelin", "Mitov", email = "vmitov@gmail.com",
role = c("aut", "cre", "cph"))
Maintainer: Venelin Mitov <vmitov@gmail.com>
Expand Down
18 changes: 8 additions & 10 deletions docs/authors.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

213 changes: 101 additions & 112 deletions docs/index.html

Large diffs are not rendered by default.

18 changes: 8 additions & 10 deletions docs/news/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion docs/pkgdown.css
Expand Up @@ -58,9 +58,14 @@ img {
max-width: 100%;
}

/* Fix bug in bootstrap (only seen in firefox) */
summary {
display: list-item;
}

/* Typographic tweaking ---------------------------------*/

.contents h1.page-header {
.contents .page-header {
margin-top: calc(-60px + 1em);
}

Expand Down Expand Up @@ -136,7 +141,9 @@ a.anchor {
.ref-index th {font-weight: normal;}

.ref-index td {vertical-align: top;}
.ref-index .icon {width: 40px;}
.ref-index .alias {width: 40%;}
.ref-index-icons .alias {width: calc(40% - 40px);}
.ref-index .title {width: 60%;}

.ref-arguments th {text-align: right; padding-right: 10px;}
Expand Down
13 changes: 9 additions & 4 deletions docs/pkgdown.js
Expand Up @@ -25,9 +25,13 @@
for (var i = 0; i < links.length; i++) {
if (links[i].getAttribute("href") === "#")
continue;
var path = paths(links[i].pathname);
// Ignore external links
if (links[i].host !== location.host)
continue;

var nav_path = paths(links[i].pathname);

var length = prefix_length(cur_path, path);
var length = prefix_length(nav_path, cur_path);
if (length > max_length) {
max_length = length;
pos = i;
Expand All @@ -52,13 +56,14 @@
return(pieces);
}

// Returns -1 if not found
function prefix_length(needle, haystack) {
if (needle.length > haystack.length)
return(0);
return(-1);

// Special case for length-0 haystack, since for loop won't run
if (haystack.length === 0) {
return(needle.length === 0 ? 1 : 0);
return(needle.length === 0 ? 0 : -1);
}

for (var i = 0; i < haystack.length; i++) {
Expand Down
6 changes: 3 additions & 3 deletions docs/pkgdown.yml
@@ -1,5 +1,5 @@
pandoc: 1.19.2.1
pkgdown: 1.1.0.9000
pkgdown_sha: 36bedb20e8d68ee91d33834c76f0e3dd03d5086a
pandoc: 2.3.1
pkgdown: 1.3.0
pkgdown_sha: ~
articles: []

20 changes: 9 additions & 11 deletions docs/reference/AbcPMMLogLik.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 9 additions & 11 deletions docs/reference/AbcPMMLogLikCpp.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 814bc5e

Please sign in to comment.