Iteration 1 - OR_EXPERT_REFINEMENT
Sequence: 3
Timestamp: 2025-07-25 22:30:51

Prompt:
You are an Operations Research (OR) expert in iteration 1 of an alternating optimization process. The algorithm alternates between OR expert analysis and data engineering implementation until convergence.

CRITICAL MATHEMATICAL CONSTRAINTS FOR LINEAR/MIXED-INTEGER PROGRAMMING:
- The optimization problem MUST remain Linear Programming (LP) or Mixed-Integer Programming (MIP)
- Objective function MUST be linear: minimize/maximize ∑(coefficient × variable)
- All constraints MUST be linear: ∑(coefficient × variable) ≤/≥/= constant
- Decision variables can be continuous (LP) or mixed continuous/integer (MIP)
- NO variable products, divisions, or other nonlinear relationships
- If previous iteration introduced nonlinear elements, redesign as linear formulation
- Maintain between 2 and 20 constraints for optimization feasibility

YOUR SCOPE: Focus exclusively on optimization modeling and mapping analysis. Do NOT propose database changes.
ROW COUNT AWARENESS: Understand that data engineer applies 3-row minimum rule - insufficient table data gets moved to business_configuration_logic.json.


DATA AVAILABILITY CHECK: 
Before listing missing requirements, verify:
- Check current schema for required data columns
- Check business configuration logic for required parameters  
- Only list as "missing" if data is truly unavailable
- If all mappings are "good", missing_requirements should be []

CONSISTENCY RULES:
- IF all mapping_adequacy == "good" THEN missing_optimization_requirements = []
- IF missing_optimization_requirements = [] THEN complete CAN be true
- IF complete == true THEN confidence should be "high"

SELF-CHECK: Before responding, verify:
1. Does current schema contain the data I claim is missing?
2. Are my mapping assessments consistent with missing requirements?
3. Is my complete status consistent with missing requirements?

MAPPING COMPLETENESS CHECK: Ensure logical consistency between:
- All objective coefficients mapped with adequacy evaluation
- All constraint bounds mapped with adequacy evaluation  
- All decision variables mapped with adequacy evaluation
- Missing requirements list matches inadequate mappings only


CRITICAL: Respond with ONLY a valid JSON object. No explanations, no markdown, no extra text.



CURRENT STATE (iteration 0):
{
  "iteration": 1,
  "converged": false,
  "business_context": "A security agency aims to minimize the total number of casualties (killed and injured) by optimally allocating resources to monitor and prevent incidents in different locations.",
  "optimization_problem": "The agency wants to minimize the total casualties (sum of killed and injured) by deciding how many resources to allocate to each location. The resources are limited, and each location has a different impact on reducing casualties based on historical data.",
  "objective": "minimize \u2211(killed[i] + injured[i])",
  "table_count": 1,
  "key_changes": [
    "Schema changes include creating new tables for missing optimization requirements and updating business configuration logic for scalar parameters and formulas."
  ],
  "math_consistency": "high",
  "next_iteration_focus": "Define the missing parameters and refine the constraints to better reflect the resource allocation problem.",
  "mapping_adequacy_summary": "needs_improvement"
}

CURRENT SCHEMA:
```sql
-- Iteration 1 Database Schema
-- Objective: Schema changes include creating new tables for missing optimization requirements and updating business configuration logic for scalar parameters and formulas.

CREATE TABLE ResourceAllocation (
  location_id INTEGER,
  resources_allocated FLOAT
);


```

CURRENT DATA DICTIONARY:
{
  "tables": {
    "ResourceAllocation": {
      "business_purpose": "Number of resources allocated to each location",
      "optimization_role": "decision_variables",
      "columns": {
        "location_id": {
          "data_type": "INTEGER",
          "business_meaning": "Unique identifier for each location",
          "optimization_purpose": "Index for decision variables",
          "sample_values": "1, 2, 3"
        },
        "resources_allocated": {
          "data_type": "FLOAT",
          "business_meaning": "Number of resources allocated to the location",
          "optimization_purpose": "Decision variable x[i]",
          "sample_values": "5.0, 10.0, 15.0"
        }
      }
    }
  }
}


CURRENT BUSINESS CONFIGURATION LOGIC:
{
  "total_resources": {
    "sample_value": 100,
    "data_type": "INTEGER",
    "business_meaning": "Total resources available for allocation",
    "optimization_role": "Constraint bound for total resources",
    "configuration_type": "scalar_parameter"
  },
  "max_killed": {
    "sample_value": 10,
    "data_type": "INTEGER",
    "business_meaning": "Maximum allowed killed per location",
    "optimization_role": "Constraint bound for killed per location",
    "configuration_type": "scalar_parameter"
  },
  "max_injured": {
    "sample_value": 20,
    "data_type": "INTEGER",
    "business_meaning": "Maximum allowed injured per location",
    "optimization_role": "Constraint bound for injured per location",
    "configuration_type": "scalar_parameter"
  },
  "max_casualties": {
    "sample_value": 30,
    "data_type": "INTEGER",
    "business_meaning": "Maximum allowed casualties per location",
    "optimization_role": "Constraint bound for casualties per location",
    "configuration_type": "scalar_parameter"
  }
}


TASK: Refine the optimization problem formulation by analyzing current data schema mapping and identifying requirements while maintaining LINEAR structure.

JSON STRUCTURE REQUIRED:

{
  "database_id": "perpetrator",
  "iteration": 1,
  "business_context": "Updated realistic business scenario description that supports linear optimization",
  "optimization_problem_description": "Refined description of LINEAR optimization problem", 
  "optimization_formulation": {
    "objective": "refined linear minimize/maximize with mathematical precision (sum of weighted variables only)",
    "decision_variables": "clearly defined controllable linear variables (continuous or integer)",
    "constraints": "mathematically precise LINEAR constraint definitions (no variable products or divisions) - maintain 2 to 20 constraints"
  },
  
  "current_optimization_to_schema_mapping": {
    "objective_coefficients": {
      "coefficient_name[indices]": {
        "currently_mapped_to": "table.column OR business_configuration_logic.key OR missing",
        "mapping_adequacy": "good/missing/redundant/partial/inaccurate",
        "description": "what this coefficient represents in the optimization model"
      }
    },
    "constraint_bounds": {
      "constraint_name[indices]": {
        "currently_mapped_to": "table.column OR business_configuration_logic.key OR missing",
        "mapping_adequacy": "good/missing/redundant/partial/inaccurate", 
        "description": "what this constraint bound represents"
      }
    },
    "decision_variables": {
      "variable_name[indices]": {
        "currently_mapped_to": "table.column OR business_configuration_logic.key OR missing",
        "mapping_adequacy": "good/missing/redundant/partial/inaccurate",
        "description": "what this decision variable represents",
        "variable_type": "continuous/integer/binary"
      }
    }
  },
  
  "missing_optimization_requirements": [
    "List what data/parameters are still needed for linear formulation (should be [] if all mappings are good)"
  ],
  
  "iteration_status": {
    "complete": true/false based on linear formulation completeness,
    "confidence": "updated confidence level",
    "next_focus": "What needs refinement for linear optimization OR 'Ready for convergence'"
  }
}

Response:
{
  "database_id": "perpetrator",
  "iteration": 1,
  "business_context": "A security agency aims to minimize the total number of casualties (killed and injured) by optimally allocating resources to monitor and prevent incidents in different locations. The agency has a limited number of resources and must ensure that the allocation does not exceed the maximum allowed casualties per location.",
  "optimization_problem_description": "The agency wants to minimize the total casualties (sum of killed and injured) by deciding how many resources to allocate to each location. The resources are limited, and each location has a different impact on reducing casualties based on historical data. The problem is formulated as a linear optimization problem with constraints on total resources and maximum allowed casualties per location.",
  "optimization_formulation": {
    "objective": "minimize \u2211(killed[i] + injured[i])",
    "decision_variables": "resources_allocated[i] (continuous): Number of resources allocated to location i",
    "constraints": "1. \u2211(resources_allocated[i]) \u2264 total_resources, 2. killed[i] \u2264 max_killed, 3. injured[i] \u2264 max_injured, 4. killed[i] + injured[i] \u2264 max_casualties"
  },
  "current_optimization_to_schema_mapping": {
    "objective_coefficients": {
      "killed[i]": {
        "currently_mapped_to": "missing",
        "mapping_adequacy": "missing",
        "description": "Number of killed in location i"
      },
      "injured[i]": {
        "currently_mapped_to": "missing",
        "mapping_adequacy": "missing",
        "description": "Number of injured in location i"
      }
    },
    "constraint_bounds": {
      "total_resources": {
        "currently_mapped_to": "business_configuration_logic.total_resources",
        "mapping_adequacy": "good",
        "description": "Total resources available for allocation"
      },
      "max_killed": {
        "currently_mapped_to": "business_configuration_logic.max_killed",
        "mapping_adequacy": "good",
        "description": "Maximum allowed killed per location"
      },
      "max_injured": {
        "currently_mapped_to": "business_configuration_logic.max_injured",
        "mapping_adequacy": "good",
        "description": "Maximum allowed injured per location"
      },
      "max_casualties": {
        "currently_mapped_to": "business_configuration_logic.max_casualties",
        "mapping_adequacy": "good",
        "description": "Maximum allowed casualties per location"
      }
    },
    "decision_variables": {
      "resources_allocated[i]": {
        "currently_mapped_to": "ResourceAllocation.resources_allocated",
        "mapping_adequacy": "good",
        "description": "Number of resources allocated to location i",
        "variable_type": "continuous"
      }
    }
  },
  "missing_optimization_requirements": [
    "killed[i]",
    "injured[i]"
  ],
  "iteration_status": {
    "complete": false,
    "confidence": "medium",
    "next_focus": "Define the missing parameters (killed[i] and injured[i]) and refine the constraints to better reflect the resource allocation problem."
  }
}
