示例#1
0
 /// <summary>
 /// Builds the name of the reservoir structure.
 /// </summary>
 /// <param name="activationContent">Specifies the type of activation content.</param>
 /// <param name="resStructIdx">The zero-based index of the reservoir structure.</param>
 private string BuildResStructName(ActivationContent activationContent, int resStructIdx)
 {
     return("ResStruct-" + activationContent.ToString() + "-Cfg" + (resStructIdx + 1).ToString());
 }
示例#2
0
 /// <summary>
 /// Builds the name of the neuron pool.
 /// </summary>
 /// <param name="activationContent">Specifies the type of activation content.</param>
 /// <param name="poolIdx">The zero-based index of the pool.</param>
 private string BuildPoolName(ActivationContent activationContent, int poolIdx)
 {
     return(activationContent.ToString() + "Pool" + (poolIdx + 1).ToString());
 }