forked from borglab/gtsam
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed 'wrap/' changes from bd57210d9..cdcf23207
cdcf23207 Merge pull request borglab#163 from borglab/dunder-methods 22d429cc2 use STL functions instead of container methods abe8818ab update pyparsing to 3.1.1 a9e896d0c add unit tests 535fe4f14 wrap supported dunder methods 079687eac parse dunder methods in interface file git-subtree-dir: wrap git-subtree-split: cdcf23207fbb03457c5d9dbfc2b0b57e515b5f3d
- Loading branch information
1 parent
c7abbad
commit 3b969bf
Showing
12 changed files
with
245 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
pyparsing==2.4.7 | ||
pyparsing==3.1.1 | ||
pytest>=6.2.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
%class FastSet, see Doxygen page for details | ||
%at https://gtsam.org/doxygen/ | ||
% | ||
%-------Constructors------- | ||
%FastSet() | ||
% | ||
classdef FastSet < handle | ||
properties | ||
ptr_FastSet = 0 | ||
end | ||
methods | ||
function obj = FastSet(varargin) | ||
if nargin == 2 && isa(varargin{1}, 'uint64') && varargin{1} == uint64(5139824614673773682) | ||
my_ptr = varargin{2}; | ||
class_wrapper(73, my_ptr); | ||
elseif nargin == 0 | ||
my_ptr = class_wrapper(74); | ||
else | ||
error('Arguments do not match any overload of FastSet constructor'); | ||
end | ||
obj.ptr_FastSet = my_ptr; | ||
end | ||
|
||
function delete(obj) | ||
class_wrapper(75, obj.ptr_FastSet); | ||
end | ||
|
||
function display(obj), obj.print(''); end | ||
%DISPLAY Calls print on the object | ||
function disp(obj), obj.display; end | ||
%DISP Calls print on the object | ||
end | ||
|
||
methods(Static = true) | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.