Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
arbor
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Analyze
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
arbor-sim
arbor
Commits
86018d0d
Commit
86018d0d
authored
8 years ago
by
Sam Yates
Browse files
Options
Downloads
Patches
Plain Diff
Proper .hpp/.cpp separation for recipe
parent
fcc6842a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
miniapp/recipes.hpp
+8
-3
8 additions, 3 deletions
miniapp/recipes.hpp
with
8 additions
and
3 deletions
miniapp/recipes.hpp
+
8
−
3
View file @
86018d0d
#pragma once
#include
<cstddef>
#include
<memory>
#include
<stdexcept>
namespace
nest
{
...
...
@@ -67,13 +68,17 @@ struct basic_recipe_param {
float
syn_weight_per_cell
=
0.3
;
};
std
::
unique_ptr
<
recipe
>
make_ring_recipe
(
std
::
unique_ptr
<
recipe
>
make_basic_ring_recipe
(
cell_id_type
ncell
,
basic_recipe_param
param
,
probe_distribution
pdist
=
probe_distribution
{});
std
::
unique_ptr
<
recipe
>
make_basic_kgraph_recipe
(
cell_id_type
ncell
,
basic_recipe_param
param
,
cell_count_type
cell_fan_in
,
probe_distribution
pdist
=
probe_distribution
{});
std
::
unique_ptr
<
recipe
>
make_
ring
_recipe
(
std
::
unique_ptr
<
recipe
>
make_
basic_rgraph
_recipe
(
cell_id_type
ncell
,
basic_recipe_param
param
,
cell_count_type
cell_fan_in
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment