Round 254

Round UUID: 6f2189d9-0295-4a89-80af-09ed36baccdc

Prompt:

Classify the entity as either Fylaran or Qtharri based on the following rules:

1. If mean_impact_crater_count >= 0.980:
   - If mean_surface_roughness >= 400 AND mean_core_density >= 0.93, classify as Fylaran
   - Otherwise, classify as Qtharri

2. If mean_impact_crater_count >= 0.965 and mean_impact_crater_count < 0.980:
   - If mean_surface_roughness < 200, classify as Qtharri
   - If mean_surface_roughness >= 400, classify as Fylaran
   - Otherwise, if mean_orbital_radius >= 2.85, classify as Fylaran
   - Otherwise, classify as Qtharri

3. If mean_impact_crater_count < 0.935, classify as Fylaran

4. If mean_impact_crater_count >= 0.945 and mean_impact_crater_count < 0.965:
   - If mean_surface_roughness < 130, classify as Qtharri
   - If mean_ring_system_complexity >= 0.965, classify as Qtharri
   - If mean_ring_system_complexity < 0.915, classify as Fylaran
   - If mean_ring_system_complexity >= 0.915 and mean_ring_system_complexity < 0.965:
     * If mean_orbital_radius < 2.66, classify as Qtharri
     * If mean_orbital_radius >= 2.85, classify as Fylaran
     * If mean_orbital_radius >= 2.66 and mean_orbital_radius < 2.85:
       - If mean_surface_roughness < 260, classify as Qtharri
       - If mean_core_density >= 0.915, classify as Qtharri
       - Otherwise, classify as Fylaran

5. If mean_impact_crater_count >= 0.935 and mean_impact_crater_count < 0.945:
   - If mean_ring_system_complexity < 0.90, classify as Fylaran
   - If mean_surface_roughness >= 350, classify as Fylaran
   - Otherwise, classify as Qtharri

Apply these rules in order and stop at the first classification decision.