is.network.static {dynamicnetwork}R Documentation

checks that a network is not dynamic

Description

checks that its argument is a network, but is not a dynamic network.

Usage

is.network.static(x)

Arguments

x the object (presumeably a network) to check

Details

Only checks that argument is a network and is not dynamic, does not check actual datastructure for integrity

Value

TRUE if argument is a network and is not a dynamicnetwork

Author(s)

skyebend@skyeome.net

See Also

is.network in the network package, is.dynamic

Examples


is.network.static(list());  #FALSE
is.network.static(network.initialize(5)); #TRUE
is.network(as.dynamic(network.initialize(5))); #TRUE, is a network, AND dynamic
is.network.static(as.dynamic(network.initialize(5))); #FALSE

[Package dynamicnetwork version 0.0-4 Index]