I'm trying to translate the following c++ statement into python.
Config::SetDefault("ns3::LteAmc::AmcModel", EnumValue(LteAmc::PiroEW2010));
In particular, I'm not sure how to translateEnumValue(LteAmc::PiroEW2010).
The following seems to run without any error.
ns.core.Config.SetDefault("ns3::LteAmc::AmcModel", ns.core.EnumValue(ns.LteAmc. PiroEW2010))
Is it the correct way?
Thanks,
Shyam