Round #926

11 May 2026, 17:28· hr-law· qwen2.5-coder-3b-instruct· r13-clean-hints
Complexity
band 0
ZP / UO / OBS
3 / 5 / 1
Journey weight
692
Lightshift ΔL
+0.00

Prompt

We are buying the trade and assets of a competitor but not the company itself. Does TUPE apply and what employees transfer with the business?

Zero-point index (what the engine surfaced)

ZPI-ZPI-0007 | 2026-05-11T17:28:01Z We are buying the trade and assets of a competitor but not the company itself. Does TUPE apply and what employees transfer with the business? ZERO POINT — 3 entries (structural invariants) ● hsl(33.60, 100%, 24%) TUPE transfer [contract] ● hsl(264.47, 100%, 24%) ETO reason [contract] ● hsl(34.63, 100%, 24%) assigned employee [contract] UNOBSERVED — 5 entries (implied truths) ○ hsl(258.00, 100%, 24%) TUPE measures [feature] ○ hsl(259.00, 100%, 24%) ETO reason [feature] ○ hsl(260.00, 100%, 24%) business transfer [feature] ○ hsl(261.00, 100%, 24%) service provision change [feature] ○ hsl(227.25, 100%, 16%) Process TUPE transfer [function] OBSERVED — 1 entries (explicit in request) ◉ hsl(257.00, 100%, 24%) TUPE transfer [feature] COMPLEXITY │ 9 entries │ spread: 34° │ band: LOW

Baseline response (no ZPI)

When you buy the trade and assets of a competitor but do not acquire the company itself, the Transfer Union Protection for Employees (TUPE) regulations may still apply to certain aspects of your acquisition. Here's how it works: 1. **Employees**: The primary concern is whether employees are transferred with the business. TUPE applies if: - You have acquired all or part of the employer’s workforce. - The transfer involves more than 20 employees, or if you acquire a significant portion of the workforce. 2. **Transfer of Employees**: - If you acquire all or a substantial portion of the workforce, the employees will be transferred to your business under TUPE. - This means they will become part of your employment relationship and receive protection under TUPE laws. - The employer must notify the employees about the transfer within 28 days of the acquisition. 3. **Conditions for Transfer**: - If you acquire less than 20 employees, or if the transfer does not involve a significant portion of the workforce, TUPE may not apply. - In such cases, the employees will remain with their current employer unless they are transferred to your business under another agreement. 4. **Notice and Consultation**: - If TUPE applies, you must provide notice to the employees about the transfer within 28 days of the acquisition. - You should also consult with the union or employee representatives if applicable. 5. **Other Considerations**: - The nature of the trade and assets acquired (e.g., a retail store vs. a manufacturing plant) can affect whether TUPE applies. - If you are acquiring only certain aspects of the business, such as specific equipment or intellectual property, TUPE may not apply to those employees. 6. **Legal Advice**: - It's advisable to consult with legal professionals who specialize in employment law and TUPE regulations to ensure compliance with all applicable laws and protect your interests. In summary, if you acquire more than 20 employees or a significant portion of the workforce from a competitor, TUPE will likely apply. You must notify the affected employees within 28 days and consult with union representatives if necessary. If TUPE does not apply, the employees will remain with their current employer unless they are transferred to your business under another agreement.

Enhanced response (with ZPI)

To determine if TUPE (Transfer of Undertakings for Pupose of Employment) applies in this scenario, we need to check if there is a change in control or ownership of the business that would affect employment rights. Since we are buying the trade and assets but not the company itself, it's likely that the transfer will be governed by TUPE. Here's how you can implement this logic using C#: ```csharp using System; using System.Collections.Generic; public class TUPEChecker { public static bool IsTUPEApplicable() { // Check if there is a change in control or ownership of the business // This could be done by comparing company details, ownership records, etc. // For simplicity, let's assume this logic is implemented elsewhere return true; // Placeholder for actual implementation } public static List<string> GetEmployeesTransferred() { // Simulate fetching employees transferred with the business var employees = new List<string> { "John Doe", "Jane Smith", "Alice Johnson" }; return employees; } } public class Program { public static void Main(string[] args) { if (TUPEChecker.IsTUPEApplicable()) { Console.WriteLine("TUPE applies."); var transferredEmployees = TUPEChecker.GetEmployeesTransferred(); Console.WriteLine("Employees transferred:"); foreach (var employee in transferredEmployees) { Console.WriteLine(employee); } } else { Console.WriteLine("TUPE does not apply."); } } } ``` ### Explanation: 1. **TUPEChecker Class**: This class contains two static methods: - `IsTUPEApplicable`: Simulates checking if TUPE applies by returning a boolean value. In a real-world scenario, this would involve more complex logic to determine if there is a change in control or ownership. - `GetEmployeesTransferred`: Simulates fetching the list of employees transferred with the business. This could be replaced with actual data retrieval from a database or an external system. 2. **Program Class**: The `Main` method demonstrates how to use the `TUPEChecker` class to determine if TUPE applies and to retrieve the list of employees transferred. This implementation is simple and assumes that the logic for checking TUPE applicability and fetching employee data is already implemented elsewhere in your application.

Grader chain

Each grader reads the same baseline + enhanced pair and casts an independent verdict. Disagreement is the framework's own signal — not noise to be averaged away.

V1samba/Meta-Llama-3.3-70B-Instruct
Better
V4qwen2.5-coder-3b-instruct
Better
V5openrouter/qwen/qwen3-235b-a22b-2507
Worse
V7qwen2.5-coder-7b-instruct
Better
V8openai/gpt-4.1
Worse
V9anthropic/claude-opus-4-7
Worse
V12openai/gpt-4o
Worse

Comments

Our grader said what it said. What do you say? Comment as a guest below.

No comments yet. Be the first to say what you make of this round.

← back to all rounds