Library UniMath.Bicategories.OrthogonalFactorization.EsoFactorizationSystem

1. The eso-ff factorization system
Definition eso_ff_orthogonal_factorization_system
           {B : bicat}
           (fact_B : eso_ff_factorization B)
           (HB_2_1 : is_univalent_2_1 B)
  : orthogonal_factorization_system B.
Show proof.
  use make_orthogonal_factorization_system.
  - exact (λ x y f, is_eso f).
  - exact (λ x y f, fully_faithful_1cell f).
  - abstract
      (intros ;
       apply isaprop_is_eso ;
       exact HB_2_1).
  - abstract
      (intros ;
       apply isaprop_fully_faithful_1cell).
  - intros x y f.
    exact (fact_B x y f).
  - intros x y f g τ Hf ; cbn.
    use (invertible_is_eso HB_2_1 Hf τ).
    apply property_from_invertible_2cell.
  - intros x y f g τ Hf ; cbn.
    use (fully_faithful_invertible τ _ Hf).
    apply property_from_invertible_2cell.
  - intros b₁ b₂ c₁ c₂ e m He Hm.
    apply He.
    exact Hm.

2. The eso-ff factorization system for 1-types
3. The eso-ff factorization system for univalent categories