@@ -80,23 +80,19 @@ class WeightOptimizer;
8080 * @ingroup user_interface
8181 */
8282
83- /* * @BeginDocumentation
84-
85- Name: Node - General properties of all nodes.
86-
87- Parameters:
88- frozen booltype - Whether the node is updated during simulation
89- global_id integertype - The node ID of the node (cf. local_id)
90- local booltype - Whether the node is available on the local process
91- model literaltype - The model type the node was created from
92- state integertype - The state of the node (see the help on elementstates
93- for details)
94- thread integertype - The id of the thread the node is assigned to (valid
95- locally)
96- vp integertype - The id of the virtual process the node is assigned
97- to (valid globally)
98-
99- SeeAlso: GetStatus, SetStatus, elementstates
83+ /* *
84+ * General properties of all nodes.
85+ *
86+ * Parameters:
87+ * - frozen (bool) - Whether the node is updated during simulation
88+ * - global_id (int) - The node ID of the node (cf. local_id)
89+ * - local (bool) - Whether the node is available on the local process
90+ * - model (string) - The model type the node was created from
91+ * - state (int) - The state of the node (see elementstates for details)
92+ * - thread (int) - The id of the thread the node is assigned to (valid locally)
93+ * - vp (int) - The id of the virtual process the node is assigned to (valid globally)
94+ *
95+ * @see GetStatus, SetStatus
10096 */
10197
10298class Node
@@ -172,7 +168,7 @@ class Node
172168 *
173169 * Returns name of node model (e.g. "iaf_psc_alpha") as string.
174170 * This name is identical to the name that is used to identify
175- * the model in the interpreter's model dictionary .
171+ * the model in the NEST model registry .
176172 */
177173 std::string get_name () const ;
178174
@@ -319,14 +315,13 @@ class Node
319315 * @defgroup status_interface Configuration interface.
320316 *
321317 * Functions and infrastructure, responsible for the configuration
322- * of Nodes from the SLI Interpreter level.
323- *
324- * Each node can be configured from the SLI level through a named
325- * parameter interface. In order to change parameters, the user
326- * can specify name value pairs for each parameter. These pairs
327- * are stored in a data structure which is called Dictionary.
328- * Likewise, the user can query the configuration of any node by
329- * requesting a dictionary with name value pairs.
318+ * of Nodes via the PyNEST API.
319+ *
320+ * Each node can be configured through a named parameter interface.
321+ * In order to change parameters, the user can specify name-value pairs
322+ * for each parameter. These pairs are stored in a data structure which
323+ * is called Dictionary. Likewise, the user can query the configuration
324+ * of any node by requesting a dictionary with name-value pairs.
330325 *
331326 * The configuration interface consists of four functions which
332327 * implement storage and retrieval of named parameter sets.
0 commit comments