I've been trying to break a large number of SID references into categories like so...
context.hyd['aerospaceDefense'] = [sid(18027),sid(12691),sid(6458),sid(29176),sid(6583),
sid(3136),sid(42021),sid(41113),sid(15991),sid(43150),
sid(23852),sid(22880),sid(4195),sid(698),sid(9156),sid(600),
sid(2015),sid(41111),sid(21755),sid(18568)]
context.hyd['automotive'] = [sid(39563),sid(3597),sid(7217),sid(4878),sid(36344),sid(16838),
sid(42637),sid(3286),sid(4117),sid(7433),sid(7039),sid(5787),
sid(3499),sid(6992),sid(6967),sid(42173),sid(22460),sid(43449),
sid(12379),sid(35166)]
this works up to a point, but it seems like I reach a limit of some sort and I when I try and build I get the error:
Algorithm must reference 1 to 10 SIDs, inclusive.
The way the message reads to me seems to indicate that I can only use up to 10 SIDs, however I'm well over 10 before I get the error. What am I missing?