You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
362 B
29 lines
362 B
/*
|
|
*
|
|
@author: sre
|
|
@date: 2022/11/6 0006
|
|
@desc: todo
|
|
*
|
|
*/
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestArm(t *testing.T) {
|
|
|
|
acWar := 5831.0
|
|
acPal := 5259.0
|
|
acHunt := 4142.0
|
|
acMag := 1137.0
|
|
cRoug := 2700.0
|
|
acList := []float64{acWar, acPal, acHunt, acMag, cRoug}
|
|
for _, ac := range acList {
|
|
dr := armFilterRate(ac)
|
|
fmt.Println(ac, " ", dr)
|
|
}
|
|
|
|
}
|