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
13 changes: 7 additions & 6 deletions docs/src/blob_ref.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ Depth = 3
Modules = [DistributedFactorGraphs]

Pages = [
"DataBlobs/entities/BlobEntry.jl",
"DataBlobs/entities/BlobStores.jl",
"entities/Blobentry.jl",
"entities/Blobstore.jl",
]

```
Expand All @@ -23,10 +23,11 @@ Pages = [
Modules = [DistributedFactorGraphs]

Pages = [
"DataBlobs/services/BlobEntry.jl",
"DataBlobs/services/BlobStores.jl",
"DataBlobs/services/BlobPacking.jl",
"DataBlobs/services/BlobWrappers.jl",
"services/blobentry_ops.jl",
"services/blobstore_ops.jl",
"Serialization/BlobPacking.jl",
"services/blob_save_load.jl",
"Blobstores/Blobstores.jl",
]

```
Expand Down
46 changes: 37 additions & 9 deletions docs/src/func_ref.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,38 +23,66 @@ Modules = [DistributedFactorGraphs]
Pages = ["entities/AbstractDFG.jl"]
```

### Summary DFG
### DFG Variable Nodes

```@autodocs
Modules = [DistributedFactorGraphs]
Pages = ["entities/AbstractDFGSummary.jl"]
Pages = ["entities/Variable.jl"]
```

### DFG Variable Nodes
### DFG Factor Nodes

```@autodocs
Modules = [DistributedFactorGraphs]
Pages = ["entities/DFGVariable.jl"]
Pages = ["entities/Factor.jl"]
```

### DFG Factor Nodes
### State

```@autodocs
Modules = [DistributedFactorGraphs]
Pages = ["entities/State.jl"]
```

### Agent and Graph

```@autodocs
Modules = [DistributedFactorGraphs]
Pages = ["entities/Agent_and_Graph.jl"]
```

### Tags

```@autodocs
Modules = [DistributedFactorGraphs]
Pages = ["entities/Tags.jl"]
```

### Timestamp

```@autodocs
Modules = [DistributedFactorGraphs]
Pages = ["entities/Timestamp.jl"]
```

### Equality

```@autodocs
Modules = [DistributedFactorGraphs]
Pages = ["entities/DFGFactor.jl"]
Pages = ["entities/equality.jl"]
```

### Error Types
```@autodocs
Modules = [DistributedFactorGraphs]
Pages = ["errors.jl"]
Pages = ["entities/Error.jl"]
```

## DFG Plots [GraphMakie.jl]

```@autodocs
Modules = [DistributedFactorGraphs]
Pages = ["weakdeps_prototypes.jl"]
Pages = ["extension_stubs.jl"]
```

## Drivers
Expand All @@ -69,5 +97,5 @@ Modules = [GraphsDFGs]

```@autodocs
Modules = [DistributedFactorGraphs]
Pages = ["FileDFG.jl"]
Pages = ["FileDFG/FileDFG.jl", "FileDFG/services/FileDFG.jl"]
```
48 changes: 31 additions & 17 deletions docs/src/services_ref.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,61 +18,75 @@ Pages = ["services/AbstractDFG.jl"]

Common Accessors to both variable and factor nodes

```@autodocs
Modules = [DistributedFactorGraphs]
Pages = ["services/CommonAccessors.jl"]
```

## Common
```@autodocs
Modules = [DistributedFactorGraphs]
Pages = [
"services/list.jl",
"services/find.jl",
"services/Tags.jl",
"services/discovery.jl",
"services/tag_ops.jl",
"entities/Bloblet.jl",
"services/Bloblet.jl",
"services/bloblet_ops.jl",
]
```

## DFG Variable Accessors CRUD and SET opperations

```@autodocs
Modules = [DistributedFactorGraphs]
Pages = ["services/DFGVariable.jl"]
Pages = ["services/variable_ops.jl"]
```

## DFG Factor Accessors CRUD and SET opperations

```@autodocs
Modules = [DistributedFactorGraphs]
Pages = ["services/DFGFactor.jl"]
Pages = ["services/factor_ops.jl"]
```

## Printing
## State Operations

```@autodocs
Modules = [DistributedFactorGraphs]
Pages = ["services/CustomPrinting.jl"]
Pages = ["services/state_ops.jl"]
```

## Compare Utilities
## Agent Operations

```@autodocs
Modules = [DistributedFactorGraphs]
Pages = ["services/agent_ops.jl"]
```

## Graph Operations

```@autodocs
Modules = [DistributedFactorGraphs]
Pages = ["services/graph_ops.jl"]
```

## Printing

```@autodocs
Modules = [DistributedFactorGraphs]
Pages = ["services/CompareUtils.jl"]
Pages = ["services/print.jl"]
```

## Common Functions
## Compare Utilities

```@autodocs
Modules = [DistributedFactorGraphs]
Pages = ["src/Common.jl"]
Pages = ["services/compare.jl"]
```

## Serialization

```@autodocs
Modules = [DistributedFactorGraphs]
Pages = ["services/Serialization.jl"]
Pages = [
"Serialization/DFGStructStyles.jl",
"Serialization/DistributionSerialization.jl",
"Serialization/PackedSerialization.jl",
"Serialization/StateSerialization.jl",
]
```
Loading
Loading