Is it possible to pass a large amount of parameters to painless script to perform sort?

Say there is a field that can be one of 200 distinct values (keyword). Every 2 different values are associated by a custom relevant score (it is a statistical data that cannot be mathematically calculted).

For example,

score("A", "B") = 1.45
score("A", "C") = 0.67
score("D", "F") = 2.29

Now I need to perform sorting on the field, according to the relevant score between every two distinct values (score("A", "B"), score("A", "C"), score("A", "D"), score("B", "C") ... ). How to acheive this? Can I pass 200 * 200 = 40000 parameters to script to perform the sort?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.