Loading...
Searching...
No Matches
dc_scaledsec::operator(>=) Interface Reference

Public Member Functions

logical function dcscaledsec_ge_ss (sclsec1, sclsec2)
logical function dcscaledsec_ge_si (sclsec, factor)
logical function dcscaledsec_ge_is (factor, sclsec)

Detailed Description

Definition at line 108 of file dc_scaledsec.f90.

Member Function/Subroutine Documentation

◆ dcscaledsec_ge_is()

logical function dc_scaledsec::operator(>=)::dcscaledsec_ge_is ( integer, intent(in) factor,
type(dc_scaled_sec), intent(in) sclsec )

Definition at line 875 of file dc_scaledsec.f90.

876 !
877 ! 2 つの DC_SCALED_SEC 型変数の比較
878 !
879 ! Comparison of two "DC_SCALED_SEC" variables
880 !
881 implicit none
882 integer, intent(in):: factor
883 type(DC_SCALED_SEC), intent(in):: sclsec
884 continue
885 result = .not. factor < sclsec

◆ dcscaledsec_ge_si()

logical function dc_scaledsec::operator(>=)::dcscaledsec_ge_si ( type(dc_scaled_sec), intent(in) sclsec,
integer, intent(in) factor )

Definition at line 860 of file dc_scaledsec.f90.

861 !
862 ! 2 つの DC_SCALED_SEC 型変数の比較
863 !
864 ! Comparison of two "DC_SCALED_SEC" variables
865 !
866 implicit none
867 type(DC_SCALED_SEC), intent(in):: sclsec
868 integer, intent(in):: factor
869 continue
870 result = .not. sclsec < factor

◆ dcscaledsec_ge_ss()

logical function dc_scaledsec::operator(>=)::dcscaledsec_ge_ss ( type(dc_scaled_sec), intent(in) sclsec1,
type(dc_scaled_sec), intent(in) sclsec2 )

Definition at line 846 of file dc_scaledsec.f90.

847 !
848 ! 2 つの DC_SCALED_SEC 型変数の比較
849 !
850 ! Comparison of two "DC_SCALED_SEC" variables
851 !
852 implicit none
853 type(DC_SCALED_SEC), intent(in):: sclsec1, sclsec2
854 continue
855 result = .not. sclsec1 < sclsec2

The documentation for this interface was generated from the following file: