Hmm, I checked into this a little while back, and wrote some notes into the SDK in the SVN. It's not simply a count of the units. Although, they did choose some fairly arbitrary weightings that you might not agree with.
// [Get] Player Strength [Calculational]
// Note: Unit Strengths are as follows:
// Spider/Scorpion : 4
// Lynx : Laser/Microwave: 5 Other: 6 ThorsHammer: 7
// Panther : Laser/Microwave: 7 Other: 8 ThorsHammer: 9
// Tiger : Laser/Microwave: 8 Other: 9 ThorsHammer: 10
// Guard Post : Laser/Microwave: 4 Other: 5 ThorsHammer: 7
// Other : 0 [Including Units in a Garage]
int GetPlayerStrength(MAP_RECT& mapRect); // Returns (strength / 8), where strength is the sum of all units owned by the player in the given map rectangle
int GetTotalPlayerStrength(); // Returns (strength / 8), where strength is the sum of all units owned by the player
I noticed the code seems to check the contents of garages, but then I think it throws away the results. It was kind of odd.