Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
build

20 changes: 20 additions & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
using Documenter, GraphicalModelLearning

makedocs(
modules = [GraphicalModelLearning],
format = :html,
sitename = "GraphicalModelLearning",
authors = "Carleton Coffrin, Andrey Y. Lokhov, Sidhant Misra, Marc Vuffray, and contributors.",
pages = [
"Home" => "index.md",
"Library" => "library.md"
]
)

deploydocs(
deps = nothing,
make = nothing,
target = "build",
repo = "github.com/lanl-ansi/GraphicalModelLearning.jl.git",
julia = "0.6"
)
23 changes: 23 additions & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# GraphicalModelLearning.jl Documentation

```@meta
CurrentModule = GraphicalModelLearning
```

## Overview

GraphicalModelLearning.jl is a Julia package containing algorithms for learning graphical models.

## Installation and Testing

To install the package use,

```julia
Pkg.add("GraphicalModelLearning")
```

To test that the package is working correctly run,

```julia
Pkg.test("GraphicalModelLearning")
```
5 changes: 5 additions & 0 deletions docs/src/library.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# GraphicalModelLearning.jl Library

```@autodocs
Modules = [GraphicalModelLearning]
```