blob: e6e42f2d0eeffc8d73938583e333a551a59dfc0f [file] [log] [blame]
Blazej Magnowskia28de572015-09-25 16:41:27 -07001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License
15 */
16
17package com.android.systemui.classifier;
18
19public class AnglesPercentageEvaluator {
Lucas Dupinbc9aac12018-03-04 20:18:15 -080020 public static float evaluate(float value, int type) {
21 final boolean secureUnlock = type == Classifier.BOUNCER_UNLOCK;
Blazej Magnowskia28de572015-09-25 16:41:27 -070022 float evaluation = 0.0f;
Lucas Dupinbc9aac12018-03-04 20:18:15 -080023 if (value < 1.00 && !secureUnlock) evaluation++;
24 if (value < 0.90 && !secureUnlock) evaluation++;
Blazej Magnowski52af6b62015-09-30 15:46:17 -070025 if (value < 0.70) evaluation++;
Blazej Magnowskia28de572015-09-25 16:41:27 -070026 return evaluation;
27 }
28}