|
SyFi
0.3
|
Public Member Functions | |
| def | iterator |
| def | __iter__ |
| def | __nonzero__ |
| def | __bool__ |
| def | __len__ |
| def | __iter__ |
| def | iterkeys |
| def | itervalues |
| def | iteritems |
| def | __getitem__ |
| def | __delitem__ |
| def | has_key |
| def | keys |
| def | values |
| def | items |
| def | __contains__ |
| def | key_iterator |
| def | value_iterator |
| def | __setitem__ |
| def | asdict |
| def | __init__ |
| def | empty |
| def | size |
| def | clear |
| def | swap |
| def | get_allocator |
| def | begin |
| def | end |
| def | rbegin |
| def | rend |
| def | count |
| def | erase |
| def | find |
| def | lower_bound |
| def | upper_bound |
Static Public Attributes | |
| tuple | thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
Static Private Attributes | |
| __repr__ = _swig_repr | |
| __swig_destroy__ = _SyFi.delete_exmap | |
Proxy of C++ std::map<(GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less)> class
| def SyFi.exmap.__init__ | ( | self, | |
| args | |||
| ) |
__init__(std::map<(GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less)> self, GiNaC::ex_is_less const & arg2) -> exmap __init__(std::map<(GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less)> self) -> exmap __init__(std::map<(GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less)> self, exmap arg2) -> exmap
Definition at line 557 of file SyFi.py.
00557 00558 def __init__(self, *args): 00559 """ 00560 __init__(std::map<(GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less)> self, GiNaC::ex_is_less const & arg2) -> exmap 00561 __init__(std::map<(GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less)> self) -> exmap 00562 __init__(std::map<(GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less)> self, exmap arg2) -> exmap 00563 """ 00564 _SyFi.exmap_swiginit(self,_SyFi.new_exmap(*args))
| def SyFi.exmap.__bool__ | ( | self | ) |
| def SyFi.exmap.__contains__ | ( | self, | |
| key | |||
| ) |
__contains__(exmap self, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::key_type const & key) -> bool
Definition at line 529 of file SyFi.py.
00529 00530 def __contains__(self, key): 00531 """__contains__(exmap self, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::key_type const & key) -> bool""" 00532 return _SyFi.exmap___contains__(self, key) 00533
| def SyFi.exmap.__delitem__ | ( | self, | |
| key | |||
| ) |
__delitem__(exmap self, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::key_type const & key)
Definition at line 504 of file SyFi.py.
00504 00505 def __delitem__(self, key): 00506 """__delitem__(exmap self, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::key_type const & key)""" 00507 return _SyFi.exmap___delitem__(self, key) 00508
| def SyFi.exmap.__getitem__ | ( | self, | |
| key | |||
| ) |
__getitem__(exmap self, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::key_type const & key) -> std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::mapped_type const &
Definition at line 499 of file SyFi.py.
00499 00500 def __getitem__(self, key): 00501 """__getitem__(exmap self, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::key_type const & key) -> std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::mapped_type const &""" 00502 return _SyFi.exmap___getitem__(self, key) 00503
| def SyFi.exmap.__iter__ | ( | self | ) |
Definition at line 473 of file SyFi.py.
References SyFi.exvector.iterator(), and SyFi.exmap.iterator().
Referenced by SyFi.exmap.__iter__().
| def SyFi.exmap.__iter__ | ( | self | ) |
Definition at line 490 of file SyFi.py.
References SyFi.exmap.__iter__(), and SyFi.exmap.key_iterator().
00490 00491 def __iter__(self): return self.key_iterator()
| def SyFi.exmap.__len__ | ( | self | ) |
| def SyFi.exmap.__nonzero__ | ( | self | ) |
__nonzero__(exmap self) -> bool
Definition at line 476 of file SyFi.py.
00476 00477 def __nonzero__(self): 00478 """__nonzero__(exmap self) -> bool""" 00479 return _SyFi.exmap___nonzero__(self) 00480
| def SyFi.exmap.__setitem__ | ( | self, | |
| args | |||
| ) |
__setitem__(exmap self, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::key_type const & key) __setitem__(exmap self, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::key_type const & key, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::mapped_type const & x)
Definition at line 544 of file SyFi.py.
00544 00545 def __setitem__(self, *args): 00546 """ 00547 __setitem__(exmap self, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::key_type const & key) 00548 __setitem__(exmap self, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::key_type const & key, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::mapped_type const & x) 00549 """ 00550 return _SyFi.exmap___setitem__(self, *args) 00551
| def SyFi.exmap.asdict | ( | self | ) |
| def SyFi.exmap.begin | ( | self | ) |
begin(exmap self) -> std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::iterator
Definition at line 590 of file SyFi.py.
Referenced by SyFi::Nedelec.compute_basis_functions(), SyFi::Nedelec2Hdiv.compute_basis_functions(), SyFi::Robust.compute_basis_functions(), and SyFi::Robust.compute_basis_functions_old().
| def SyFi.exmap.clear | ( | self | ) |
| def SyFi.exmap.count | ( | self, | |
| x | |||
| ) |
count(exmap self, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::key_type const & x) -> std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::size_type
| def SyFi.exmap.empty | ( | self | ) |
| def SyFi.exmap.end | ( | self | ) |
end(exmap self) -> std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::iterator
Definition at line 595 of file SyFi.py.
Referenced by SyFi::Nedelec.compute_basis_functions(), SyFi::Nedelec2Hdiv.compute_basis_functions(), SyFi::Robust.compute_basis_functions(), and SyFi::Robust.compute_basis_functions_old().
| def SyFi.exmap.erase | ( | self, | |
| args | |||
| ) |
erase(exmap self, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::key_type const & x) -> std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::size_type erase(exmap self, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::iterator position) erase(exmap self, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::iterator first, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::iterator last)
Definition at line 615 of file SyFi.py.
00615 00616 def erase(self, *args): 00617 """ 00618 erase(exmap self, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::key_type const & x) -> std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::size_type 00619 erase(exmap self, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::iterator position) 00620 erase(exmap self, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::iterator first, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::iterator last) 00621 """ 00622 return _SyFi.exmap_erase(self, *args) 00623
| def SyFi.exmap.find | ( | self, | |
| x | |||
| ) |
find(exmap self, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::key_type const & x) -> std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::iterator
| def SyFi.exmap.get_allocator | ( | self | ) |
get_allocator(exmap self) -> std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::allocator_type
Definition at line 585 of file SyFi.py.
00585 00586 def get_allocator(self): 00587 """get_allocator(exmap self) -> std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::allocator_type""" 00588 return _SyFi.exmap_get_allocator(self) 00589
| def SyFi.exmap.has_key | ( | self, | |
| key | |||
| ) |
has_key(exmap self, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::key_type const & key) -> bool
| def SyFi.exmap.items | ( | self | ) |
| def SyFi.exmap.iterator | ( | self | ) |
iterator(exmap self) -> SwigPyIterator
Definition at line 469 of file SyFi.py.
Referenced by SyFi.exmap.__iter__(), SyFi.ex_int_map.__iter__(), SyFi.symexlist.__iter__(), SyFi.exlist.__iter__(), SyFi.exset.__iter__(), SyFi::Nedelec.compute_basis_functions(), SyFi::Nedelec2Hdiv.compute_basis_functions(), SyFi::Robust.compute_basis_functions(), SyFi::Robust.compute_basis_functions_old(), SyFi.exmap.iteritems(), and SyFi.ex_int_map.iteritems().
| def SyFi.exmap.iteritems | ( | self | ) |
Definition at line 496 of file SyFi.py.
References SyFi.exvector.iterator(), and SyFi.exmap.iterator().
| def SyFi.exmap.iterkeys | ( | self | ) |
Definition at line 492 of file SyFi.py.
References SyFi.exmap.key_iterator().
00492 00493 def iterkeys(self): return self.key_iterator()
| def SyFi.exmap.itervalues | ( | self | ) |
Definition at line 494 of file SyFi.py.
References SyFi.exmap.value_iterator().
00494 00495 def itervalues(self): return self.value_iterator()
| def SyFi.exmap.key_iterator | ( | self | ) |
key_iterator(exmap self) -> SwigPyIterator
Definition at line 534 of file SyFi.py.
Referenced by SyFi.exmap.__iter__(), SyFi.ex_int_map.__iter__(), SyFi.exmap.iterkeys(), and SyFi.ex_int_map.iterkeys().
00534 00535 def key_iterator(self): 00536 """key_iterator(exmap self) -> SwigPyIterator""" 00537 return _SyFi.exmap_key_iterator(self) 00538
| def SyFi.exmap.keys | ( | self | ) |
| def SyFi.exmap.lower_bound | ( | self, | |
| x | |||
| ) |
lower_bound(exmap self, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::key_type const & x) -> std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::iterator
Definition at line 629 of file SyFi.py.
00629 00630 def lower_bound(self, x): 00631 """lower_bound(exmap self, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::key_type const & x) -> std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::iterator""" 00632 return _SyFi.exmap_lower_bound(self, x) 00633
| def SyFi.exmap.rbegin | ( | self | ) |
rbegin(exmap self) -> std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::reverse_iterator
| def SyFi.exmap.rend | ( | self | ) |
| def SyFi.exmap.size | ( | self | ) |
| def SyFi.exmap.swap | ( | self, | |
| v | |||
| ) |
| def SyFi.exmap.upper_bound | ( | self, | |
| x | |||
| ) |
upper_bound(exmap self, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::key_type const & x) -> std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::iterator
Definition at line 634 of file SyFi.py.
00634 00635 def upper_bound(self, x): 00636 """upper_bound(exmap self, std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::key_type const & x) -> std::map< GiNaC::ex,GiNaC::ex,GiNaC::ex_is_less >::iterator""" 00637 return _SyFi.exmap_upper_bound(self, x)
| def SyFi.exmap.value_iterator | ( | self | ) |
value_iterator(exmap self) -> SwigPyIterator
Definition at line 539 of file SyFi.py.
Referenced by SyFi.exmap.itervalues(), and SyFi.ex_int_map.itervalues().
00539 00540 def value_iterator(self): 00541 """value_iterator(exmap self) -> SwigPyIterator""" 00542 return _SyFi.exmap_value_iterator(self) 00543
| def SyFi.exmap.values | ( | self | ) |
SyFi.exmap::__repr__ = _swig_repr [static, private] |
SyFi.exmap::__swig_destroy__ = _SyFi.delete_exmap [static, private] |
tuple SyFi.exmap::thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') [static] |