Skip to content

Commit a64a26c

Browse files
Google DeepMindcopybara-github
authored andcommitted
No public description
PiperOrigin-RevId: 798355907 Change-Id: I3a225e3200cbc60ccc3d93f21694a606a7ab296a
1 parent 93c5665 commit a64a26c

File tree

3 files changed

+0
-9
lines changed

3 files changed

+0
-9
lines changed

doc/APIreference/functions.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1342,8 +1342,6 @@ Set default options for length range computation.
13421342

13431343
Set solver parameters to default values.
13441344

1345-
*Nullable:* ``solref``, ``solimp``
1346-
13471345
.. _mj_defaultOption:
13481346

13491347
`mj_defaultOption <#mj_defaultOption>`__
@@ -1371,8 +1369,6 @@ Set visual options to default values.
13711369

13721370
Copy mjModel, allocate new if dest is NULL.
13731371

1374-
*Nullable:* ``dest``
1375-
13761372
.. _mj_saveModel:
13771373

13781374
`mj_saveModel <#mj_saveModel>`__

include/mujoco/mujoco.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,6 @@ MJAPI void mj_inverseSkip(const mjModel* m, mjData* d, int skipstage, int skipse
166166
MJAPI void mj_defaultLROpt(mjLROpt* opt);
167167

168168
// Set solver parameters to default values.
169-
// Nullable: solref, solimp
170169
MJAPI void mj_defaultSolRefImp(mjtNum* solref, mjtNum* solimp);
171170

172171
// Set physics options to default values.
@@ -176,7 +175,6 @@ MJAPI void mj_defaultOption(mjOption* opt);
176175
MJAPI void mj_defaultVisual(mjVisual* vis);
177176

178177
// Copy mjModel, allocate new if dest is NULL.
179-
// Nullable: dest
180178
MJAPI mjModel* mj_copyModel(mjModel* dest, const mjModel* src);
181179

182180
// Save model to binary MJB file or memory buffer; buffer has precedence when given.

python/mujoco/introspect/functions.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -592,14 +592,12 @@
592592
type=PointerType(
593593
inner_type=ValueType(name='mjtNum'),
594594
),
595-
nullable=True,
596595
),
597596
FunctionParameterDecl(
598597
name='solimp',
599598
type=PointerType(
600599
inner_type=ValueType(name='mjtNum'),
601600
),
602-
nullable=True,
603601
),
604602
),
605603
doc='Set solver parameters to default values.',
@@ -644,7 +642,6 @@
644642
type=PointerType(
645643
inner_type=ValueType(name='mjModel'),
646644
),
647-
nullable=True,
648645
),
649646
FunctionParameterDecl(
650647
name='src',

0 commit comments

Comments
 (0)