OpenCMISS-Iron Internal API Documentation
types::problem_type Type Reference

Contains information for a problem. More...

Collaboration diagram for types::problem_type:

Public Attributes

integer(intg) user_number
 The user defined identifier for the problem. The user number must be unique. More...
 
integer(intg) global_number
 The global number of the problem in the list of problems. More...
 
logical problem_finished
 Is .TRUE. if the problem has finished being created, .FALSE. if not. More...
 
type(problems_type), pointer problems
 A pointer to the problems for this problem. More...
 
integer(intg), dimension(:), allocatable specification
 The problem specification array, eg. [class, type, subtype], although there can be more or fewer identifiers. Unused identifiers are set to zero. More...
 
type(control_loop_type), pointer control_loop
 A pointer to the control loop information for the problem. More...
 

Detailed Description

Contains information for a problem.

See also
OPENCMISS::CMISSProblemType

Definition at line 3221 of file types.f90.

Member Data Documentation

type(control_loop_type), pointer types::problem_type::control_loop

A pointer to the control loop information for the problem.

Definition at line 3227 of file types.f90.

integer(intg) types::problem_type::global_number

The global number of the problem in the list of problems.

Definition at line 3223 of file types.f90.

logical types::problem_type::problem_finished

Is .TRUE. if the problem has finished being created, .FALSE. if not.

Definition at line 3224 of file types.f90.

type(problems_type), pointer types::problem_type::problems

A pointer to the problems for this problem.

Definition at line 3225 of file types.f90.

integer(intg), dimension(:), allocatable types::problem_type::specification

The problem specification array, eg. [class, type, subtype], although there can be more or fewer identifiers. Unused identifiers are set to zero.

Definition at line 3226 of file types.f90.

integer(intg) types::problem_type::user_number

The user defined identifier for the problem. The user number must be unique.

Definition at line 3222 of file types.f90.