Skip to content

Commit ac07be9

Browse files
committed
Start to cleanup for doc handling
1 parent 3ad11b6 commit ac07be9

4 files changed

Lines changed: 9 additions & 11 deletions

File tree

pymathics/graph/__init__.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1-
"""Pymathics Graph - Working with Graphs (Vertices and Edges)
1+
"""
2+
Graphs - Vertices and Edges
23
3-
This module provides functions and variables for working with
4-
graphs.
4+
A Pymathics module that provides functions and variables for working with graphs.
55
66
Example:
77
In[1]:= LoadModule["pymathics.graph"]
88
Out[1]= pymathics.graph
99
In[2]:= BinomialTree[3]
1010
In[3]:= BinomialTree[6]
1111
In[4]:= CompleteKaryTree[3, VertexLabels->True]
12+
13+
Networkx does the heavy lifting here.
1214
"""
1315

1416
from pymathics.graph.base import (

pymathics/graph/algorithms.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# -*- coding: utf-8 -*-
22
"""
3-
Algorithms on Graphs.
4-
5-
networkx does all the heavy lifting.
3+
Algorithms on Graphs
64
"""
75

86
from typing import Optional

pymathics/graph/generators.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# -*- coding: utf-8 -*-
22
"""
3-
Routines for generating classes of Graphs.
4-
5-
networkx does all the heavy lifting.
3+
Routines for generating classes of Graphs
64
"""
75

86
from typing import Callable, Optional
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
Graph Measures and Metrics
33
4-
Measures include basic measures, such as the number of vertices and edges, connectivity, degree measures,
5-
centraility, and so on.
4+
Measures include basic measures, such as the number of vertices and edges, \
5+
connectivity, degree measures, centrality, and so on.
66
"""

0 commit comments

Comments
 (0)