Skip to content
Snippets Groups Projects
copeland.go 256 B
Newer Older
Mohamed Fall's avatar
Mohamed Fall committed
package comsoc

func CopelandSWF(p Profile) (count Count, err error) {
	alts := p[0]
	for _, alt1 := range alts {
		for _, alt2 := range alts {
			if alt1 != alt2 {

			}
		}
	}

	return
}

//func CopelandSCF(p Profile) (bestAlts []Alternative, err error)