Nektar++
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Public Member Functions | List of all members
CellMLToNektar.pycml.mathml_times Class Reference
Inheritance diagram for CellMLToNektar.pycml.mathml_times:
Inheritance graph
[legend]
Collaboration diagram for CellMLToNektar.pycml.mathml_times:
Collaboration graph
[legend]

Public Member Functions

def evaluate
 
- Public Member Functions inherited from CellMLToNektar.pycml.mathml_operator
def wrong_number_of_operands
 
- Public Member Functions inherited from CellMLToNektar.pycml.mathml
def __init__
 
def __repr__
 
def __deepcopy__
 
def clone_self
 
def get_original_of_clone
 
def get_component
 
def model
 
def eval
 
- Public Member Functions inherited from CellMLToNektar.pycml.element_base
def __init__
 
def __delattr__
 
def __setattr__
 
def rootNode
 
def cmeta_id
 
def xml_remove_child_at
 
def xml_doc
 
def xml_properties
 

Additional Inherited Members

- Static Public Member Functions inherited from CellMLToNektar.pycml.mathml
def clone
 
- Public Attributes inherited from CellMLToNektar.pycml.element_base
 xml_attributes
 
- Properties inherited from CellMLToNektar.pycml.mathml
 component = property(get_component)
 

Detailed Description

Class representing the MathML <times> operator.

Definition at line 5587 of file pycml.py.

Member Function Documentation

def CellMLToNektar.pycml.mathml_times.evaluate (   self)
Evaluate by taking the product of the operands of the enclosing <apply>.

Definition at line 5589 of file pycml.py.

References CellMLToNektar.pycml.mathml.eval().

Referenced by CellMLToNektar.pycml.mathml_constructor._eval_self().

5590  def evaluate(self):
5591  """
5592  Evaluate by taking the product of the operands of the enclosing <apply>.
5593  """
5594  app = self.xml_parent
5595  ops = app.operands()
5596  value = 1
5597  for operand in ops:
5598  value *= self.eval(operand)
5599  return value