remove extra is_vnf definition

This commit is contained in:
Adrian Mariano 2021-10-21 18:43:36 -04:00
parent 89b176d329
commit 267b5cd771

View file

@ -457,9 +457,6 @@ function vnf_from_region(region, transform, reverse=false) =
// bool = is_vnf(x);
// Description:
// Returns true if the given value looks like a VNF structure.
function is_vnf(x) = is_list(x) && len(x)==2 && is_list(x[0]) && is_list(x[1])
&& is_vector(x[0][0],3) && is_vector(x[1][0]);
function is_vnf(x) =
is_list(x) &&
len(x)==2 &&