Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
graph-tool
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alex Henrie
graph-tool
Commits
4cb32514
Commit
4cb32514
authored
Aug 18, 2020
by
Alex Henrie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Increase Boost Python function arity only when necessary
parent
ffe0d50a
Pipeline
#706
passed with stage
in 116 minutes and 47 seconds
Changes
10
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
2 additions
and
10 deletions
+2
-10
src/graph/generation/graph_generation.cc
src/graph/generation/graph_generation.cc
+1
-1
src/graph/inference/layers/graph_blockmodel_layers.cc
src/graph/inference/layers/graph_blockmodel_layers.cc
+1
-1
src/graph/inference/layers/graph_blockmodel_layers_imp.cc
src/graph/inference/layers/graph_blockmodel_layers_imp.cc
+0
-1
src/graph/inference/uncertain/graph_blockmodel_dynamics_cising_glauber.cc
...nce/uncertain/graph_blockmodel_dynamics_cising_glauber.cc
+0
-1
src/graph/inference/uncertain/graph_blockmodel_dynamics_epidemics.cc
...nference/uncertain/graph_blockmodel_dynamics_epidemics.cc
+0
-1
src/graph/inference/uncertain/graph_blockmodel_dynamics_ising_glauber.cc
...ence/uncertain/graph_blockmodel_dynamics_ising_glauber.cc
+0
-1
src/graph/inference/uncertain/graph_blockmodel_dynamics_pseudo_cising.cc
...ence/uncertain/graph_blockmodel_dynamics_pseudo_cising.cc
+0
-1
src/graph/inference/uncertain/graph_blockmodel_dynamics_pseudo_ising.cc
...rence/uncertain/graph_blockmodel_dynamics_pseudo_ising.cc
+0
-1
src/graph/inference/uncertain/graph_blockmodel_measured.cc
src/graph/inference/uncertain/graph_blockmodel_measured.cc
+0
-1
src/graph/inference/uncertain/graph_blockmodel_uncertain.cc
src/graph/inference/uncertain/graph_blockmodel_uncertain.cc
+0
-1
No files found.
src/graph/generation/graph_generation.cc
View file @
4cb32514
...
...
@@ -15,7 +15,7 @@
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#define BOOST_PYTHON_MAX_ARITY
4
0
#define BOOST_PYTHON_MAX_ARITY
2
0
#include "graph.hh"
#include "graph_util.hh"
...
...
src/graph/inference/layers/graph_blockmodel_layers.cc
View file @
4cb32514
...
...
@@ -15,7 +15,7 @@
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#define BOOST_PYTHON_MAX_ARITY
4
0
#define BOOST_PYTHON_MAX_ARITY
2
0
#include <boost/python.hpp>
#include "graph_tool.hh"
...
...
src/graph/inference/layers/graph_blockmodel_layers_imp.cc
View file @
4cb32514
...
...
@@ -15,7 +15,6 @@
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#define BOOST_PYTHON_MAX_ARITY 40
#include <boost/python.hpp>
#include "graph_tool.hh"
...
...
src/graph/inference/uncertain/graph_blockmodel_dynamics_cising_glauber.cc
View file @
4cb32514
...
...
@@ -15,7 +15,6 @@
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#define BOOST_PYTHON_MAX_ARITY 40
#include <boost/python.hpp>
#include "graph_tool.hh"
...
...
src/graph/inference/uncertain/graph_blockmodel_dynamics_epidemics.cc
View file @
4cb32514
...
...
@@ -15,7 +15,6 @@
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#define BOOST_PYTHON_MAX_ARITY 40
#include <boost/python.hpp>
#include "graph_tool.hh"
...
...
src/graph/inference/uncertain/graph_blockmodel_dynamics_ising_glauber.cc
View file @
4cb32514
...
...
@@ -15,7 +15,6 @@
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#define BOOST_PYTHON_MAX_ARITY 40
#include <boost/python.hpp>
#include "graph_tool.hh"
...
...
src/graph/inference/uncertain/graph_blockmodel_dynamics_pseudo_cising.cc
View file @
4cb32514
...
...
@@ -15,7 +15,6 @@
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#define BOOST_PYTHON_MAX_ARITY 40
#include <boost/python.hpp>
#include "graph_tool.hh"
...
...
src/graph/inference/uncertain/graph_blockmodel_dynamics_pseudo_ising.cc
View file @
4cb32514
...
...
@@ -15,7 +15,6 @@
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#define BOOST_PYTHON_MAX_ARITY 40
#include <boost/python.hpp>
#include "graph_tool.hh"
...
...
src/graph/inference/uncertain/graph_blockmodel_measured.cc
View file @
4cb32514
...
...
@@ -15,7 +15,6 @@
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#define BOOST_PYTHON_MAX_ARITY 40
#include <boost/python.hpp>
#include "graph_tool.hh"
...
...
src/graph/inference/uncertain/graph_blockmodel_uncertain.cc
View file @
4cb32514
...
...
@@ -15,7 +15,6 @@
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#define BOOST_PYTHON_MAX_ARITY 40
#include <boost/python.hpp>
#include "graph_tool.hh"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment