1
0
This repository has been archived on 2025-11-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
adda-monorepo/PI5/src/adda/ej1/common/HuertosHeuristic.java
2025-10-10 02:12:44 +02:00

15 lines
375 B
Java

package adda.ej1.common;
import java.util.function.Predicate;
public class HuertosHeuristic {
public static Double heuristic(
HuertosVertex v1,
Predicate<HuertosVertex> goal,
HuertosVertex v2) {
// MAXIMO DE VERDURAS PLANTABLES DE v1.index() HASTA DatosHuertos.getN()
return (double) DatosHuertos.getN() - v1.index();
}
}